/Responsive Web Design

3. Inform with the Paragraph Element

p elements are the preferred element for paragraph text on websites. p is short for "paragraph". You can create a paragraph element like this:

<p>I'm a p tag!</p>


Challenge

Create a p element below your h2 element, and give it the text Hello Paragraph.

Note: As a convention, all HTML tags are written in lowercase, for example <p></p> and not <P></P>.


Prev: 2. Headline with h2 element

Next: 4. Fill in the Blank with Placeholder Text