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