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