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