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