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