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