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