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