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