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