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