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