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