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