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