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