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