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