Create a new index.html file and include the following:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Title</title>
</head>
<body>
<header>header</header> <!-- header of site -->
<main>
<h1>h1</h1> <!-- heading type 1 of site -->
<h2>h2</h2> <!-- heading type 2 of site -->
<h3>h3</h3> <!-- heading type 3 of site -->
<h4>h4</h4> <!-- heading type 4 of site -->
<h5>h5</h5> <!-- heading type 5 of site -->
<h6>h6</h6> <!-- heading type 6 of site -->
<p>Lorem ipsum dolor sit amet.</p> <!-- paragraph of text of site -->
</main>
<footer>footer</footer> <!-- footer of site -->
</body>
</html>
Comments
Leave a comment