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