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