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