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