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