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