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