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