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