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