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