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