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