Steps -- Stage 1: Header & Intro
Follow these steps in order. Each step is a file edit.
Prerequisites
Completed Stage 0. You should have index.html with the HTML5 skeleton.
Steps
1. Edit index.html
Add a heading and a paragraph inside the <body> tags:
html
<body>
<h1>Burger Barn</h1>
<p>Handcrafted burgers, made fresh daily.</p>
</body>The <h1> element creates the main heading of the page. Every page should have exactly one <h1>. The <p> element creates a paragraph of text.
Verify
Open index.html in your browser. You should see:
- "Burger Barn" displayed as a large, bold heading
- "Handcrafted burgers, made fresh daily." as regular text below it