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