-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathListing_1.12.html
More file actions
45 lines (45 loc) · 868 Bytes
/
Listing_1.12.html
File metadata and controls
45 lines (45 loc) · 868 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
<!DOCTYPE html>
<html>
<head>
<title>Test Page: Don't Panic</title>
<meta charset="utf-8">
<style>
a {
color: red;
}
div {
border: 1px solid black;
}
div a {
color: green;
}
</style>
</head>
<body>
<h1>I'm an h1</h1>
<ul>
<li>
<a href="https://example.com/">Link</a>
</li>
<li>
<a href="https://example.com/">Link</a>
</li>
<li>
<a href="https://example.com/">Link</a>
</li>
</ul>
<h2>I'm an h2</h2>
<div>
<a href="https://example.com/">I'm a link</a>
</div>
<div>
<a href="https://example.com/">I'm a link</a>
</div>
<div>
<a href="https://example.com/">I'm a link</a>
</div>
<div>
<a href="https://example.com/">I'm a link</a>
</div>
</body>
</html>