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