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