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