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 HTML Forms Choosing Options Create a Select Menu

No CSS attached to my challenge

I might be doing something wrong, but whenever I am doing a challenge and click on 'preview', the CSS seems to be missing. How is that possible? Can I add CSS to my challenge?

You're not doing anything wrong, there is no css attached to the code challenge. When you get pass the challenge later on you'll see you're asked to style the html on your own as extra credit.

2 Answers

Ste Royle
Ste Royle
9,538 Points

It looks like for this particular challenge you don't need to add any CSS so there is no CSS file/tab provided.

jason chan
jason chan
31,009 Points

This challenge is asking you to create a form. So it's just html. It's like a drop down selection.

A hint is below:

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select

answer:

<form action="index.html" method="post">
      <h1>Shirt Order Form</h1>
// give the id name color and name your selection colors
      <select id="color" name="shirt_color">
      </select>
 </form>