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