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