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