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