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