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 Build a Simple Website Text Editors and HTML Images and Lists

images and list

its one of the question in the quiz and its says make sure to use a ul tag?

<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>smells like bakin' cupcake company</title> </head>

<body> <img src="img/cupcake.jpg" <ul>

</ul> 

</body> </html>

23 Answers

<ul> </ul>

you need to open and close the ul tag, so

<ul>
</ul>

no, it's not ' it's in the top left corner of your keyboard under the esc button. `

i did that but it says use ul tag ...what is that means?

Um, ul means unordered list.

I'm really not too sure what you're asking here.

Let me check the code challenge out.

<ul>
</ul>

that's all that you need to put in under the img that you put in the body.

its the challenge in images and list section, 3 question

Yes that's what I went into.

All that you need to do is put the following code into the body tag under the img tag.

<ul>
</ul>

okay?

it was asking me to create a empty unordered list so what i did is this

<ul> </ul>

the empty unordered list is the code that I wrote above.

okay let me try again.

Did it work?

Did it work?

no i did it again and its says use the ul tag. i wrote <ul> </ul>

When you're writing code in the forums (not in the code challenges) you must put three 's and then put the code there and put three's to end it off.

try putting the code up in between those.

three ' s <ul> </ul> three's

whoops.

click on the markdown cheatsheet. It'll explain it much better than I can.

'''<ul> </ul>'''

'''html <ul> </ul> '''

yay i got it..finally thanks:)

Alright.

But yeah you just need put that under the img tag.

If it doesn't work then I really don't know what else to say.

Actually if it doesn't work copy and paste the code just like you did today.

so ya this is what i wrote in my quiz but its not taking it.

Okay um, take the whole thing, copy it all and paste it here inside the things that you just used alright?

```html<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>smells like bakin' cupcake company</title> </head>

<body> <img src="img/cupcake.jpg" <ul> </ul> </body> </html>

try to put some spacing between the three ` things and the doctype. Nothing showed up.

try to put some spacing between the three ` things and the doctype. Nothing showed up.

```html<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>smells like bakin' cupcake company</title> </head>

<body> <img src="img/cupcake.jpg" <ul> </ul> </body> </html>

``<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>smells like bakin' cupcake company</title> </head>

<body> <img src="img/cupcake.jpg" <ul> </ul> </body> </html>

... dude, put some space between the html and the doctype.

``` html<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>smells like bakin' cupcake company</title> </head>

<body> <img src="img/cupcake.jpg" <ul> </ul> </body> </html>

Okay seriously, you're kind of spamming right now.

Put some space between the html and the slanted bracket with the exclamation point.

``` <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>smells like bakin' cupcake company</title> </head>

<body> <img src="img/cupcake.jpg" <ul> </ul> </body> </html>

you're doing <!DOCTYPE html> but it should be ``` then the html and then an enter then the doctype.

<!DOCTYPE HTML>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>smells like bakin' cupcake company</title>
  </head>

  <body>
    <img src="img/cupcake.jpg"
    <ul>
  </ul>
  </body>
</html>

you need to close your img tag.

<img src="img/cupcake.jpg">
<ul>
</ul>

oh ok.. let me try now

ya its done its taking it now..Thanks:)

No problem!

By the way, this will ask you to pick a best answer later on so I'd just do it now.

This was delightful!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1111one

I have a headache.