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