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