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