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