Created
August 4, 2021 01:06
-
-
Save natafaye/4c0e0ce3bb019367c0a9d720f90a721a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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>Document</title> | |
</head> | |
<body> | |
<nav> | |
<h1>Name of Your Page</h1> | |
<ul> | |
<li><a href="#">Link 1</a></li> | |
<li><a href="#">Link 2</a></li> | |
<li><a href="#">Link 3</a></li> | |
</ul> | |
</nav> | |
<div class="main"> | |
<div class="welcome-area"> | |
Welcome to this website where dreams come true | |
</div> | |
<div class="row first-row"> | |
<h3>Paragraph</h3> | |
<p>A pargraph of text</p> | |
</div> | |
<div class="row"> | |
<h3>An Image of Something</h3> | |
<img src="nothing.png"> | |
</div> | |
<div class="row"> | |
Content | |
</div> | |
<div class="row"> | |
Content | |
</div> | |
</div> | |
<footer> | |
<p>Copyright </p> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment