-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
48 lines (45 loc) · 1.09 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
41
42
43
44
45
46
47
48
<!doctype html>
<html lang="en">
<head>
<title>Code City</title>
<link rel="shortcut icon" href="favicon.ico" />
<style>
body {
font-family: sans-serif;
font-size: larger;
margin-left: 0;
margin-bottom: 100px;
}
body>* {
margin-left: 10px;
}
li {
margin-top: 1ex;
}
#footer {
bottom:0;
margin-left: 0;
position: fixed;
width: 100%;
}
</style>
</head>
<body>
<h1>Code City</h1>
<p>Welcome to Code City, a collabortive coding platform for education.
<p>Here are a list of running instances:</p>
<dl>
<dt><a href="https://alpha.codecity.world/">Alpha Code City</a></dt>
<dd>Primary development server.</dd>
</dl>
<p>Code City is an open source
project <a href="https://github.com/google/CodeCity">hosted on
GitHub</a>. You can
<a href="https://github.com/google/CodeCity/blob/master/docs/setup.md">run
your own instance</a>. To have your instance included in the
list above, please
<a href="https://github.com/NeilFraser/CodeCityHomepage/pulls">file
a pull request</a>.</p>
<img id="footer" src="static/skyline.svg">
</body>
</html>