Skip to content

Commit

Permalink
New CSS and HTML files are added
Browse files Browse the repository at this point in the history
  • Loading branch information
dhavalkpatel92 committed Feb 12, 2015
1 parent 6f2d055 commit 6f32f5e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Chapter2/Amazeriffic/selectorpractice.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>

<body>
<h1>Hi</h1>
<h2 class="important">Hi again</h2>
<p class="a">Random unattached paragraph</p>


<div class="relevant">
<p class="a">first</p>
<p class="a">second</p>
<p>third</p>
<p>fourth</p>
<p class="a">fifth</p>
<p class="a">sixth</p>
<p>seventh</p>
</div>
</body>
</html>
3 changes: 3 additions & 0 deletions Chapter2/Amazeriffic/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* {
color: red;
}

0 comments on commit 6f32f5e

Please sign in to comment.