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