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