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