Good! Now let's add dimensions and color to our <div>s so we can see them.
You can give the sections of your resume any sizing or color you like—feel free to look back at the first exercise in this project to see what sizing we used.
Instructions
Instructions
Give your
<div>
s a height, width, and background color!
#header{
height:50px;
width:50px;
background-color:black;
border-radius:5px;
}
.left{
height:50px;
width:50px;
background-color:black;
border-radius:5px;
}
.right{
height:50px;
width:50px;
background-color:black;
border-radius:5px;
}
#footer{
height:50px;
width:50px;
background-color:black;
border-radius:5px;
}
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title></title>
</head>
<body>
<div id="header"></div>
<div class="left"></div>
<div class="right"></div>
<div id="footer"></div>
</body>
</html>
No comments:
Post a Comment