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