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