-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.12 KB
/
index.html
File metadata and controls
39 lines (38 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="homepage" content="width=device-width, initial-scale=1.0">
<title>Homepage</title>
<style>
body {
background-color: lightgrey;
color: blue;
text-align: center;
margin: 110px
}
#list {
color: light;
padding: 10px;
word-spacing: 20px;
#words {
word-spacing: 5px;
}
}
</style>
</head>
<body>
<nav id="list">
<tr>
<td><a href="index.html">Homepage</a></td>
<td><a href="about.html">About</a></td>
<td><a href="the-most-accurate-games.html" id="words">The most accurate games</a></td>
<td><a href="streamers.html">Streamers</a></td>
<td><a href="analysischat.html">Analysis chat</a></td>
</tr>
</nav>
<h1>Chess must be fair and available for everyone.</h1>
<p>This site was created with help "ChessForAll" GitHub repository, using HTML.</p>
<img src="https://i.imgur.com/ypWIDAI.jpeg" alt="Robot's chess">
</body>
</html>