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