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