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