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