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