King Cohort

 

MLK

Information

hack info

problem statement

  • 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

  1. git add -A

  2. git commit -m “whatever you want to say in here”

  3. git push


  • create your css page

  • link your css page

  • give your page a background color

  • give your text a specific color

  1. git add -A

  2. git commit -m “whatever you want to say in here”

  3. git push


index.html

<div id="topsection">

</div>

styles.css

#topsection {

height: 300px;

width: 100%;

background-color: grey;

}

  1. make another section

  2. include a list(ol or ul) of your summer plans in the next session

  3. utilize your old code for help

catch up directions

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;

}