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