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