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