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