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