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