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