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