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