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