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