treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Title.

  • is the title of the site a Click-able div? or an image?
  • I think it's a header tag if I understand your question correctly. Inside the header is a couple of divs.
  • It's an anchor link with a background image. Check it out with firebug.
  • It's a background image defined within an anchor tag defined within an h1 tag.

    The CSS:

    header h1 a {
    background: url("images/logo.png") no-repeat scroll 0 0 transparent;
    display: block;
    height: 59px;
    text-indent: -9999px;


    The HTML:

    <h1><a href="/"><span>CSS</span>-Tricks<strong>*</strong></a></h1>