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