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