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 trialClayton Bowland
2,874 Pointselement that displays text in italics
not sure which element im missing for the italics to add emphasis to words "html basics"?
<!DOCTYPE html>
<html>
<head>
<title>HTML Text</title>
</head>
<body>
<p>Mike's favorite course is HTML Basics</p>
<p>
<br>
<strong>Mike T. Frog
100 Lilypad Way
Portland, OR 97227
</strong>
</br>
</p>
</body>
</html>
3 Answers
Agnes Demes
6,613 PointsPleasure, It is great practice for me too to look at other people's code.
Agnes Demes
6,613 PointsHi there, to add italics you can use the <em></em> or the <i></i> tags within the paragraph eg <p> this is the normal <i> Italics</i> and back to normal</p> hope this helps
Clayton Bowland
2,874 Pointsthank you again.
Clayton Bowland
2,874 Pointsyes ,thank you it actually hit me a couple miutes ago,nailed it. thank you for your time.