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