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