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