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