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