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