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