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