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