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