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