Home > Additional Instructional Assignments > Carrie Dills Challenge #2
If any of this didn't seem comfortable to you, I recommend you checkout the following three videos, 19-Margins and padding.mp4, 20-Borders and backgrounds, 21-Working with color, and 22-Units of measurement that were shown previously in class (and available below).
The second challenge is described in the video 24-Challenge2.mp4 (below). Go to your Dropbox subfolder "Carrie Dills - Challenge 2", and edit the style2_start.css document such that challenge2_start.html will appear as shown below to complete this challenge. A backup copy of each of these files, is provided below.
Here are the videos that apply to this challenge, and a backup copy of the challenge.
<html>
<head>
<title>Challenge 2</title>
<link rel="stylesheet" type="text/css" href="style2.start.css">
</head>
<div class="wrapper">
<header class="header">
<h1>This is a challenge!</h1>
<p>This is a paragraph in the header</p>
</header>
<section class="content">
<h2>Fun with CSS</h2>
<p>Learning CSS is fun! You can make the web a prettier place.</p>
</section>
<footer class="footer">
<p>You could put a copyright here.</p>
</footer>
</div>
</html>
/* Add your styles below this */