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