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