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