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