<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.>
Build a Resumé
<In what way does your code behave incorrectly? Include ALL error messages.>
I can’t get it to do what I want.
My name is in front of everything else. I followed the instructions, but truthfully, I don’t quite get this positioning thing, so I can’t fix it. Same happened in the last exercise, I don’t think it looks great.
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title></title>
</head>
<body>
<div id="header"><h3>Dorabel E. Velazquez</h3>
</div>
<div class="left">
<a hrfe="https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR7F8Me2vriR8J9ME54cqs8syBQzl-Ix_A5CUDRX8HivKOG92ik">Here My picture- HOW DO I ADD MY OWN PIC, I still don't get it</a>
</div>
<div class="right">
<h4><srtong>WORK EXPERIENCE</h4></strong>
<p><strong>Cracker Barrel Old Country Store-San Antonio,TX-12/15-Present</strong></li>
<ul>
<li>General customer service</li>
<li>Re-stock shelves</li>
<li>Keep restrooms clean</li>
</ul>
<p ><strong>NISD-Holmes High School-San Antonio,TX 08/15-10/15</strong></p>
<ul>
<li>Receive parents and students at front desk
</li>
<li>Answer phone calls and direct them to the right office</li>
</ul>
<p ><strong>HR Block-San Antonio,TX 12/14-04/15</strong></p>
<ul>
<li>Trained on current tax laws</li>
<li>Assisted and completed client's personal and business tax returns</li>
<li>Took "second looks" at prior year's tax returns for any prior year discrepancies</ul>
</div>
<div id="footer">
<ul>
<li>14111 Vance Jackson Road, #5208
San Antonio,TX 78249</li>
<li>[email protected]</li>
</ul></div>
</body>
</html>
div {
border-radius:5px;
color:black;
padding:2px;
border:2px;
}
#header {
position:fixed;
z-index:1;
font-family:cursive;
font-size:25px;
text-align:center;
background-color:#669999;
}
.left{
float:left;
font-family:Verdana;
background-color:#cc9999;
height:125px;
width:75px;
}
.right{
float:right;
position:relative;
background-color:#cccccc;
height:1050px;
width:285px;
}
#footer{
clear:both;
background-color:#ffcccc;
}
Thank you for all your help, Sincerely, Dora : )
Replace this line with your code.