-
Notifications
You must be signed in to change notification settings - Fork 0
/
parks.html
71 lines (64 loc) · 2.12 KB
/
parks.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>NetGardens Online</title>
<meta name="descripton" content="Showcase your indie website in an interactive landscape. Plant your garden today!" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="style.css" />
<style>
main img { float: left; margin: 2ex; }
main h2 { clear: both; }
main { width: 80%; margin: auto; }
</style>
</head>
<body>
<nav>
<a href="#">Browse</a>
<a href="#">Help</a>
<a href="#">Login</a>
</nav>
<main>
<h1>Park List</h1>
<h2>Central Park</h2>
<img src="static/icon-central-park.png" width="128px" height="128px" alt=""/>
<p>
Our most park-like park, this is a great catch-all
place to plant the seeds of your garden. Enjoy the
sights of rocks and rivers and things, and find your
favorite nook and/or cranny to settle down in.
</p>
<button type="button">Visit</button>
<h2>Arcade Zone</h2>
<img src="static/icon-central-park.png" width="128px" height="128px" alt=""/>
<p>
Set up your very own arcade machine in this video game
themed park. (words words words)
</p>
<button type="button">Visit</button>
<h2>Cyber Space</h2>
<img src="static/icon-central-park.png" width="128px" height="128px" alt=""/>
<p>
Neon and stuff. Looks like Tron. The 80s one, not the
weird new one. Programmers, tech nerds, etc.
</p>
<button type="button">Visit</button>
<h2>Museum Mile</h2>
<img src="static/icon-central-park.png" width="128px" height="128px" alt=""/>
<p>
Artists and graphics coders, this park is for you.
Plant your garden in our museum, and show to the world
its natural beauty and awe-inspiring charm. Maybe you'll
plant the seed for the next Mona Lisa?
</p>
<button type="button">Visit</button>
<h2>Echo Metro</h2>
<img src="static/icon-central-park.png" width="128px" height="128px" alt=""/>
<p>
Head under the depths of the city, to the best spot to
practice your graffiti or your sick jamz. ...i dunno
words words words
</p>
<button type="button">Visit</button>
</main>
</body>