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