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