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