King Cohort
MLK
- Name with H1 
- Paragraph about yourself(4-5 sentences) 
- Picture of yourself or something appropriate 
- list of your classes(ordered or unordered) 
- Separate github push for item 
- git add -A 
- git commit -m “whatever you want to say in here” 
- git push 
- create your css page 
- link your css page 
- give your page a background color 
- give your text a specific color 
- git add -A 
- git commit -m “whatever you want to say in here” 
- git push 
index.html
    <div id="topsection">
</div>
styles.css
#topsection {
height: 300px;
width: 100%;
background-color: grey;
}
- make another section 
- include a list(ol or ul) of your summer plans in the next session 
- utilize your old code for help 
nav bar
html
<ul id="compass">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
css
#compass{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
color:gold;
}
li {
float: left;
}
li a {
display: block;
text-align: center;
color:gold;
padding: 14px 16px;
text-decoration: none;
}

