Use on the webTotal Use [ 5048 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/5b9985d47fdb7012a9ce3fc0b24f01ac?family=Tawattype+Bloch" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/5b9985d47fdb7012a9ce3fc0b24f01ac?family=Tawattype+Bloch);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Tawattype Bloch";
src: url("https://db.onlinewebfonts.com/t/5b9985d47fdb7012a9ce3fc0b24f01ac.eot");
src: url("https://db.onlinewebfonts.com/t/5b9985d47fdb7012a9ce3fc0b24f01ac.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/5b9985d47fdb7012a9ce3fc0b24f01ac.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/5b9985d47fdb7012a9ce3fc0b24f01ac.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/5b9985d47fdb7012a9ce3fc0b24f01ac.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/5b9985d47fdb7012a9ce3fc0b24f01ac.svg#Tawattype Bloch")format("svg");
}
2CSS rules to specify fonts
font-family: "Tawattype Bloch";