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