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