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