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