0
Have you looked into CSS3 custom fonts? Essentially, find a font file you like, download it, and in your css file, have the following rules:
@font-face {
font-family: 'your_comic_font';
src: url('comic_font.woff');
}
.your_logo_div {
font-family: your_comic_font;
font-size: 40px;
}
Extras:
You can learn more about font-face in this thread: http://stackoverflow.com/questions/11002820/why-should-we-include-ttf-eot-woff-svg-in-a-font-face