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