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