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