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