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