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