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