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