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