Paragraphs
Add normal text under your heading.
1<h1>My Pizza Diary</h1>
2<p>Today I ate four slices.</p>
3<p>Tomorrow I plan to eat five.</p>
Every line, explained
<h1>My Pizza Diary</h1>- The heading from lesson 1: every good page starts with one.
<p>Today I ate four slices.</p>- <p> marks a paragraph: a block of ordinary text. The browser puts a little space between paragraphs, like this course does between these explanations.
<p>Tomorrow I plan to eat five.</p>- A second paragraph. HTML tags simply follow one another down the page, top to bottom, in the order you write them.