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