-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathrainbow.html
More file actions
46 lines (46 loc) · 1.01 KB
/
rainbow.html
File metadata and controls
46 lines (46 loc) · 1.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>
A Crazy Experiment
</title>
<link href="style.css" rel="stylesheet"/>
<meta charset="utf-8"/>
</head>
<body>
<h1>
A Crazy Experiment
</h1>
<p>
Look! A Rainbow!
</p>
<ul>
<li style="color: red">
Red
</li>
<li style="color: orange">
Orange
</li>
<li style="color: yellow">
Yellow
</li>
<li style="color: green">
Green
</li>
<li style="color: blue">
Blue
</li>
<li style="color: indigo">
Indigo
</li>
<li style="color: violet">
Violet
</li>
</ul>
<p>
<a href="index.html">
Return to home page
</a>
</p>
</body>
</html>