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