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