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