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