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