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