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