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