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