Copy and paste the following code that is in the table to your text editor; add your own information, color, pictures, etc.

<!DOCTYPE html>
<html>
<head>
<style>

div.container {
width: 100%;
border: 1px solid gray;
}
html {color: # ;
font-family:arial;
}
body {
background-color:#;
}
header, footer {
padding: 10px;
color: black;
background-color: gray;
clear: left;
text-align: center;
}

nav {
float: left;
max-width: 160px;
margin: 0;
padding: 10px;
}

nav ul a {
text-decoration: none;
}
article {
margin-left: 170px;
border-left: 1px solid black;
padding: 10px;
overflow: hidden;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Page Title</h1>

</header>
<nav>Links: add links to other people's pages on site
<ul>

<li><a href="gwc.html">Coding Home </a> </li>
<li><a href="webdesign.html">Web Design Page </a></li>

</ul>
</nav>

<article>
<center>
<img src="image.jpg">
<h1>Heading</h1>
</center>
<h2><p>Page information</h2>
This is where you will add your information for your page. Replace these words with your information. Create interest in the layout by adding<p>paragraphs</p>,
increasing <h2>font size</h2> and <center>location on the page.</center>
<ol>
<li>create numbered lists</li>
<li>create numbered lists</li>
<li>create numbered lists</li>

</ol>

or
<ul>
<li>create bullet lists</li>
<li>create bullet lists</li>
<li>create bullet lists</li>

</ul>

<table border="1" cellpadding="1">
<tr>
<td>
Use a table to layout information.
</td>
<td>
The table tags set up the table
</td>
</tr>
<tr>
<td> The td tags set up new columns

</td>
<td>
The tr tags start new rows.
</td>
</tr>
</table>
Add more pictures <img src="girl.jpg" height="200" width="200">for interest: you can copy them from the internet, and add their link.
Logos can be created at <a href="https://logomakr.com/">Logomkr</a>
<br>Add breaks</br>

<br>You can also make words in your text <a href="http://www.sachemlibrary.org/pages/index.aspx" >links</a> so they will take the audience to another location for further resources.
</article>
<footer>Copyright &copy; GWCSachem</footer>
</div>

</body>
</html>
Links: