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