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