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