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