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