You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
613 B
30 lines
613 B
<html> |
|
<head> |
|
<title>Challenge 1</title> |
|
<style> |
|
/* Put your styles here, between the style tags. */ |
|
body { |
|
color: gray; |
|
} |
|
|
|
.content p { |
|
color: purple; |
|
} |
|
|
|
.header { |
|
background-color: black; |
|
} |
|
</style> |
|
</head> |
|
<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> |
|
</html> |