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