Sunday, April 6, 2014

CSS Intro



In our CSS intro, we will learn how to color various elements with CSS.  

Copy the following HTML and color h1 elements red and p elements blue.  Color li elements green.

<!DOCTYPE html>
<html>
<head>
<style>
</style>
</head>
<body>
   <h1>Most important page ever!</h1>
   <p>Here are the awesome languages we are going to learn.</p>
   <ul>
     <li>HTML</li>
     <li>CSS</li>
     <li>Javascript</li>
 </ul>
</body>
</html>

No comments:

Post a Comment