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