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