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

HTML

JACOB VARGHESE
seal-mask
.a{fill-rule:evenodd;}techdegree
JACOB VARGHESE
Front End Web Development Techdegree Student 1,670 Points

Section lacks heading. Consider using h2-h6 elements

Where should I add the h2 to h6 codes.

JACOB VARGHESE
seal-mask
.a{fill-rule:evenodd;}techdegree
JACOB VARGHESE
Front End Web Development Techdegree Student 1,670 Points

<section> <ul id="gallery"> <li> <a href="img/numbers-01.jpg"> <img src="img/numbers-01.jpg" alt=""> <P>Experiemntation with colors and textures.</P> </a> </li> <li> <a href="img/numbers-02.jpg"> <img src="img/numbers-02.jpg" alt=""> <P>Creating shapes using repetition.</P> </a> </li> <li> <a href="img/numbers-06.jpg"> <img src="img/numbers-06.jpg" alt=""> <P>Playing with blending modes in photoshop.</P> </a> </li> <li> <a href="img/numbers-09.jpg"> <img src="img/numbers-09.jpg" alt=""> <P>Trying to create an 80's style of glows.</P> </a> </li> <li> <a href="img/numbers-12.jpg"> <img src="img/numbers-12.jpg" alt=""> <P>Drips created using photpshop brushes.</P> </a> </li> </ul> </section>

1 Answer

Kreig Durham
Kreig Durham
8,829 Points

I don't entirely understand what you're asking, but couldn't you just put a heading in an h2 tag above your section?

<h2>Your New Heading</h2>

<section>
  <ul id="gallery">
    <li>
      <a href="img/numbers-01.jpg"> <img src="img/numbers-01.jpg" alt="">
        <P>Experiemntation with colors and textures.</P>
      </a>
    </li>
    <li>
      <a href="img/numbers-02.jpg"> <img src="img/numbers-02.jpg" alt="">
        <P>Creating shapes using repetition.</P>
      </a>
    </li>
    <li>
      <a href="img/numbers-06.jpg"> <img src="img/numbers-06.jpg" alt="">
        <P>Playing with blending modes in photoshop.</P>
      </a>
    </li>
    <li>
      <a href="img/numbers-09.jpg"> <img src="img/numbers-09.jpg" alt="">
        <P>Trying to create an 80's style of glows.</P>
      </a>
    </li>
    <li>
      <a href="img/numbers-12.jpg"> <img src="img/numbers-12.jpg" alt="">
        <P>Drips created using photpshop brushes.</P>
      </a>
    </li>
  </ul>
</section>