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