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