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