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