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