Use on the webTotal Use [ 3451 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/8e00d160f03f088693121469e8fc0347?family=Tamil-Topaz" 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/8e00d160f03f088693121469e8fc0347?family=Tamil-Topaz);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Tamil-Topaz";
src: url("https://db.onlinewebfonts.com/t/8e00d160f03f088693121469e8fc0347.eot");
src: url("https://db.onlinewebfonts.com/t/8e00d160f03f088693121469e8fc0347.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/8e00d160f03f088693121469e8fc0347.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/8e00d160f03f088693121469e8fc0347.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/8e00d160f03f088693121469e8fc0347.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/8e00d160f03f088693121469e8fc0347.svg#Tamil-Topaz")format("svg");
}
2CSS rules to specify fonts
font-family: "Tamil-Topaz";