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