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