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