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