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