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