Home > Additional Instructional Assignments > Carrie Dills Challenge #1
If any of this didn't seem comfortable to you, I recommend you checkout the following three videos, 06-CSS syntax, 07-Basic selector types, and 10-How browsers apply styles that were shown previously in class..
The first challenge is the video 11-Challenge1.mp4 (below). Go to your Dropbox subfolder "Carrie Dills - Challenge 1", and edit the challenge1_start.html document to complete this challenge. A backup copy, is provided below.
Here are the videos that apply to this challenge, and a backup copy of the challenge.
<html>
<head>
<title>Challenge 1</title>
<style>
/* Put your styles here, between the style tags. */
</style>
</head>
<header class="header">
<h1>This is a challenge!</h1>
<p>This is a paragraph in the header</p>
</header>
<section class="coontent">
<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>
</html>