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