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