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