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