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