-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
37 lines (36 loc) · 1.07 KB
/
about.html
File metadata and controls
37 lines (36 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="about" content="width=device-width, initial-scale=1.0">
<title>About</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>
</tr>
</nav>
<h1>This site was created by <a href="https://lichess.org/@/Mihail_Chess_Mega">Mihal_Chess_Mega</a> from lichess. Our moral: Chess must be fair and available for everyone.</h1>
<p>"I want to make this a real chess website."</p>
</body>
</html>