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