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