-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 980 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Test Page: Don't Panic</title>
<meta charset="utf-8">
</head>
<body>
<h1>I'm an h1</h1>
<ul>
<li>
<a href="http://example.com/" style="color: red;">Link</a>
</li>
<li>
<a href="http://example.com/" style="color: red;">Link</a>
</li>
<li>
<a href="http://example.com/" style="color: red;">Link</a>
</li>
</ul>
<h2>I'm an h2</h2>
<div style="border: 1px solid black;">
<a href="http://example.com/" style="color: green;">I'm a link</a>
</div>
<div style="border: 1px solid black;">
<a href="http://example.com/" style="color: green;">I'm a link</a>
</div>
<div style="border: 1px solid black;">
<a href="http://example.com/" style="color: green;">I'm a link</a>
</div>
<div style="border: 1px solid black;">
<a href="http://example.com/" style="color: green;">I'm a link</a>
</div>
</body>
</html>