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