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