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