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