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