-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSelectors4.html
More file actions
47 lines (40 loc) · 1014 Bytes
/
Selectors4.html
File metadata and controls
47 lines (40 loc) · 1014 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task 4</title>
<style>
body {
font: 1.2em / 1.5 sans-serif;
}
h2 + p{
color: red;
}
.list > li{
list-style: none;
border-bottom: 1px solid gray;
}
</style>
</head>
<body>
<div class="container">
<h2>This is a heading</h2>
<p>This paragraph comes after the heading.</p>
<p>This is the second paragraph.</p>
<h2>Another heading</h2>
<p>This paragraph comes after the heading.</p>
<ul class="list">
<li>One</li>
<li>
Two
<ul>
<li>2.1</li>
<li>2.2</li>
</ul>
</li>
<li>Three</li>
</ul>
</div>
</body>
</html>