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