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