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