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