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