General / Posts /

How could I mimic marvel comic book style font with CSS?

54
I am trying to do a pure CSS logo on a marvel themed slots games site for the logo - you think it's possible to come up with the code that doesn't involve images?
marvelslots  10 years ago   viewed: 39700    

1 Answer

-1
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
Milo   9 years ago

   

Your name*
Password
(Optional. Used to modify this post afterwords)
+ =  

Ask your Own Question

  • If your question is related to the topic of this post, you can post your question to this page by clicking the "Post a reply" button at left;

  • When you want to start a new page for your question:
    • If your question is related to the General, click:

      Ask new question: General
    • Otherwise navigate to one of the following forum categories, and post your question there.

      ##