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