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