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