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