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