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 HTML Mastery

Didier Borel
Didier Borel
2,837 Points

in a paragraph, how do i make text bold, what is the tag again

m

index.html
<!DOCTYPE html>
<html>
  <head>
    <title>HTML Mastery Challenge</title>
  </head>
  <body>
    <h1>HTML Mastery Challenge</h1>

    <!-- Write your code below -->
    <div>
      <h2>Shopping List</h2>
      <ol>
        <li>apple</li>
        <li>bannas</li>
        <li>oranges</li>
      </ol>
      <p> this is some text</p>




    </div>


  </body>
</html>

3 Answers

<b> </b>

Or

<strong> </strong>
Didier Borel
Didier Borel
2,837 Points

Or ? I don't understand

You can use both and they do the same thing :)

Didier Borel
Didier Borel
2,837 Points

where can I find a list of all html tags and their syntax? or do I just need to memorise them y coding often. Over time I am sure I will forget the ones I don't use, so therefore it would be great if there was a sort help menu with all the functions

Curtis Murley
Curtis Murley
2,766 Points

In your css try

p {
   font-weight: bold;
}
Didier Borel
Didier Borel
2,837 Points

this but can you remind me of the tag or command to put in directly in html pls

Didier Borel
Didier Borel
2,837 Points

this. that is what i needed to know

No problem! :D