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