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