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