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