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

Images and Lists 3/4

It asks to add an unordered list below the cupcake image, what should my code look like, i tried pasting my code into this window but it doesnt work (even with the 4 spaces). Thanks, I really want to make sure I complete everything

When pasting blocks of code use 3 tics (the key to the left of number 1 on a standard keyboard) at the beginning and end of the code block:

\`\`\`
... 
code
...
\`\`\`

Forgot I can't edit these types of posts... I was trying to escape the tics to show you so ignore the slashes. You may have to use double returns (enter twice) to show multiple lines if writing code in the post as opposed to pasting it in.

This is also helpful Markdown Cheatsheet - github

1 Answer

It should probably look like this:

<ul>
    <li>First item</li>
    <li>Second item</li>
</ul>