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