-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 1.21 KB
/
index.html
File metadata and controls
58 lines (54 loc) · 1.21 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
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Connecting Worlds, where everyone is equal</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: system-ui, sans-serif;
max-width: 700px;
margin: 2rem auto;
padding: 0 1rem;
line-height: 1.6;
}
header {
margin-bottom: 2rem;
}
nav a {
margin-right: 1rem;
}
h1 {
margin-bottom: 0.5rem;
}
footer {
margin-top: 3rem;
font-size: 0.9rem;
color: #666;
}
</style>
</head>
<body>
<header>
<h1>Connecting Worlds</h1>
<p>A place where everyone is welcome.</p>
<nav>
<a href="index.html">Home</ a>
<a href="joinin.html">Join In!</a>
<a href="about.html">About</a>
</nav>
</header>
<main>
<h2>Welcome</h2>
<p>This site is a place where everyone is welcome. Anyone can join.</p>
<h2>Current Experiments</h2>
<ul>
<li>AAC‑friendly interface ideas</li>
<li>Clipboard‑to‑speech prototypes</li>
<li>Simple UI layouts for communication tools</li>
</main>
<footer>
<p>© 2025 Connecting Worlds</p>
</footer>
</body>
</html>