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