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