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