-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.22 KB
/
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
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head> <title>A Colorful Website</title>
<meta charset="utf-8" />
</head>
<body>
<h2>Navigation</h2>
<ul>
<li style="color: #F90">
<a href="orange.html">The Orange Page</a>
</li>
<li style="color: #00F">
<a href="blue.html">The Blue Page</a>
</li>
<li>
<a href="rainbow.html">The Rainbow Page</a>
</li>
</ul>
<h1 style="color: #07F">A Colorful Website</h1>
<p>This is a website about color!</p>
<p><a href="index.html">Return to home page</a></p>
<h2 style="color: #C00">News</h2>
<ul>
<li><a href="news-1.html">Blue Is The New Hue</a></li>
<li><a href="rainbow.html">Our New Rainbow</a></li>
<li><a href="news-2.html">A Red Rebellion</a></li>
<h2 style="color: #C00">News</h2>
<ul>
<li>
<a href="news-1.html">Blue Is The New Hue</a>
</li>
<li>
<a href="rainbow.html">Our New Rainbow</a>
</li>
</ul>
</body>
</html>