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