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