<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
<In what way does your code behave incorrectly? Include ALL error messages.>
Missing List Item
Header
Paragraph
When I try to create a resume it is saying that I am missing items in which I know that I have in my resume. Please help as I do not know what is incorrect in this exercise and I do not know what I am doing wrong.
HTML :
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title></title>
</head>
<body>
<div id="header">
<h1 id="HLEFT">Christian 123-12345 </h1>
<h1 id="hcenter"> Resume</h1>
<h1 id="HRIGHT">[email protected]</h1>
</div>
<div class="left">
<h2 id="field"> Field: </h2>
<ul class="border">
<li>CodeCademy</li>
</ul>
<p> Codecademy is where I am learning how to code</p>
</div>
<div class="right">
<h2 id="date"> Date: </h2>
<ul class="border">
<li>
04/22/2016
</li>
</ul>
</div>
<div id="footer"> <h1> Footer <h1>
</div>
</body>
</html>
CSS :
body {
background-color: grey;
}
div {
border-radius: 5px;
}
#header {
position: fixed;
z-index: 1;
background-color: gold;
width: 100%;
height: 5%;
}
.left {
float: left;
background-color: red;
width: 25%;
height: 92%;
margin-top: 3%;
}
.right {
float: right;
background-color: green;
width: 25%;
height: 92%;
margin-top: 3%;
}
#footer {
clear: both;
}
h1 {
display: inline;
}
#hright {
margin-left: 22.5%
}
#hcenter {
margin-left: 22.5%
}
#field {
margin-left: 40%;
}
#date {
margin-left: 45%;
}
.border {
border: 2px solid blue;
}