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