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