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