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