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