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