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