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