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