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