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