Social Icons

Pages

Tuesday, November 29, 2016

Build a Resume 7/8

Headings, paragraphs, and lists
Finally, let's add the content of our resume: headers to describe experience, skills, and education, paragraphs to add details, and lists to... well, make lists!


Instructions
Include any combination of headers (any kind: h1 through h6), paragraphs, and lists (ordered or unordered) you'd like. Just be sure to include at least one header, one paragraph, and one list.

#header{
    height:50px;
    width:50px;
    background-color:black;
    border-radius:5px;
    position:fixed;
    z-index:1;
}
.left{
    height:50px;
    width:50px;
    background-color:black;
    border-radius:5px;
    float:left;
}
.right{
    height:50px;
    width:50px;
    background-color:black;
    border-radius:5px;
    float:right;
}
#footer{
    height:50px;
    width:50px;
    background-color:black;
    border-radius:5px;
    clear:both;
    

}

<!DOCTYPE html>
<html>
 <head>
  <link type="text/css" rel="stylesheet" href="stylesheet.css"/>
  <title></title>
 </head>
 <body>
 <h1>hello</h1>
 <h2>hello</h2>
 <h3>hello</h3>
 <h4>hello</h4>
 <h5>hello</h5>
 <h6>hello</h6>
 <p>nice</p>
 <ul>
     <li>GRART</li>
     <li>GRART</li>
     <li>GRART</li>
     
 </ul>
     <div id="header"></div>
     <div class="left"></div>
     <div class="right"></div>
     <div id="footer"></div>
     
 </body>
</html>

No comments:

Post a Comment