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