Getting Started
Getting Started
We’ll begin with basic HTML tags:
<title>
and</title>
<h1>
and</h1>
For this lesson, we will use HTML to create an online store mockup. While there are several tags within the example’s starter code, we are going to focus on the <title>
and <h1>
tags.
Note:
- The
<title>
is located in the metadata. This is NOT visible to the page. - The
<h1>
is the main text printed on your web page. This IS visible to the page.