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