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