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