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