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