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