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