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 trialDidier Borel
2,837 Pointsin a paragraph, how do i make text bold, what is the tag again
m
<!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
Shaun Moore
6,301 Points<b> </b>
Or
<strong> </strong>
Curtis Murley
2,766 PointsIn your css try
p {
font-weight: bold;
}
Didier Borel
2,837 Pointsthis but can you remind me of the tag or command to put in directly in html pls
Didier Borel
2,837 Pointsthis. that is what i needed to know
Shaun Moore
6,301 PointsNo problem! :D
Didier Borel
2,837 PointsDidier Borel
2,837 PointsOr ? I don't understand
Shaun Moore
6,301 PointsShaun Moore
6,301 PointsYou can use both and they do the same thing :)
Didier Borel
2,837 PointsDidier Borel
2,837 Pointswhere 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