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