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