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