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