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