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