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