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