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