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