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