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