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