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