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