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