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