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