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