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