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