Skip to content

Instantly share code, notes, and snippets.

@aureliaspecker
Last active October 22, 2018 18:22
Show Gist options
  • Save aureliaspecker/f37f7a53bad552cac806146afe70be1b to your computer and use it in GitHub Desktop.
Save aureliaspecker/f37f7a53bad552cac806146afe70be1b to your computer and use it in GitHub Desktop.
Code First: Girls Demos - CSS 1
<!DOCTYPE html>
<html>
<head>
<title>CSS Demo</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<h1>Make me red!</h1>
<p>I am a paragraph I should be blue, Helvetica, size 16px.</p>
<ul>
<li>This is an unordered list.</li>
<li>All items in this list should have a yellow background.</li>
<li>Just the items though - not the whole list!</li>
</ul>
<h2>Make me green on an orange background</h2>
<p>I am a paragraph I should be blue, Helvetica, size 16px.</p>
<ol>
<li>This is an ordered list.</li>
<li>All items in this list should have a teal background.</li>
<li>Just the items thought - not the whole list!</li>
</ol>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment