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