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