-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexChpt2Selector
30 lines (27 loc) · 1.06 KB
/
indexChpt2Selector
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<!--
1. Add a color property to the body.
2. Add a different colour for the h1 elements.
3. Add a class to at least 2 elements and choose a new colour.
4. Add an id to an element and choose a new colour.
-->
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css_Chpt2Selector/styles.css">
</head>
<body>
<h1 id="demo">CSS selectors example</h1>
<section>
<h1 class="demo">Section heading</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Assumenda dignissimos quisquam sequi, est eligendi reiciendis?</p>
<p class="demo">Nulla qui aperiam, cumque labore, repudiandae quae accusantium quos possimus illo, odit numquam, eveniet doloremque!</p>
</section>
<section>
<h1>Section heading</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Assumenda dignissimos quisquam sequi, est eligendi reiciendis?</p>
<h2>Subheading</h2>
<p>Nulla qui aperiam, cumque labore, repudiandae quae accusantium quos possimus illo, odit numquam, eveniet doloremque!</p>
</section>
</body>
</html>