Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Framework Basics Build a Website with Foundation Building the Callout and Footer Sections

Challange Task 1 of 4

First, give the a element on line 13 Foundation's class for defining buttons.

index.html
<!DOCTYPE html>
<html>

<head>
  <title>Ribbit - A Treehouse Project</title>
  <meta name="viewport" content="width=device-width">
  <link rel="stylesheet" href="css/foundation.min.css">
</head>
<body>

  <div class="row"> 
    <div class="callout large-12 columns">
      <a href="#">Sign up for Treehouse<i class="fi-arrow-right"></i></a>
    </div>
  </div>

  <!-- Footer -->
  <div class="row main-footer">
    <div class="large-4 columns">
      <img class="th-logo" src="img/logo-footer.png" alt="logo">
      <p>
        Our mission is to bring affordable Technology education to people everywhere, in order to help them achieve their dreams and change the world.
      </p>
      <p class="copyright">&copy; 2013 Treehouse Island, Inc.</p>
    </div>
    <div class="large-2 columns">
      <ul class="link-list">
        <li class="heading"><a href="#">Start learning free &rarr;</a></li>
        <li><a href="#">About Treehouse</a></li>
        <li><a href="#">Treehouse Blog</a></li>
        <li><a href="#">Treehouse Shop</a></li>
        <li><a href="#">Privacy Policy</a></li>
        <li><a href="#">Terms &amp; Conditions</a></li>
      </ul>            
    </div>
    <div class="large-2 columns">
      <ul class="link-list">
        <li class="heading"><a href="#">Browse our library &rarr;</a></li>
        <li><a href="#">Website Design</a></li>
        <li><a href="#">Web Programming</a></li>
        <li><a href="#">iOS Development</a></li>
        <li><a href="#">Android Development</a></li>
        <li><a href="#">Wordpress</a></li>
      </ul>
    </div>
    <div class="large-2 columns">
      <ul class="link-list">
        <li class="heading"><a href="#">Get in touch &rarr;</a></li>
        <li><a href="mailto:hi@teamtreehouse.com">Email us</a></li>
        <li>1(888)555-1234</li>
      </ul>
    </div>
  </div><!-- End footer -->      

</body>
</html>

<div class="row"> <div class="callout large-12 columns"> <a class="button" href="#">Sign up for Treehouse<i class="fi-arrow-right"></i></a> </div> </div>

Just add the class="button" Simple as that, right before the href tag. http://foundation.zurb.com/docs/components/buttons.html