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