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