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