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