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