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