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