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