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