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