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