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