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