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