-
Notifications
You must be signed in to change notification settings - Fork 0
/
stats.html
46 lines (46 loc) · 1.65 KB
/
stats.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Stats</title>
<link rel="stylesheet" type="text/css" href="baseTemplate.css">
<link rel="stylesheet" type="text/css" href="stats.css">
</head>
<body>
<header>
<div id="container">
<nav>
<img id="clubname" src="images/NinerChessClubTrans.png" alt="Logo" width="120" height="120">
<div id="button">
<a href="index.html">Home</a>
<a href="aboutus.html">About</a>
<a href="stats.html">Statistics</a>
<a href="calendar.html">Calendar</a>
<a href="contactus.html">Contact</a>
</div>
</nav>
</div>
</header>
<main>
<div class="pageHeader">
<h1>Leaderboard</h1>
</div>
<div id="statsBody">
<img id="leaderboardImage" src="images/MarchTourneyLeaderboard.PNG" alt="March Tournament Leaderboard">
</div>
</main>
<footer>
<div id="footerValidation">
<a href="https://validator.w3.org/">HTML validation</a> |
<a href="https://jigsaw.w3.org/css-validator/">CSS validation</a>
</div>
<div id="findUs">
<h4>Find us online below </h4>
<a href="https://ninerengage.uncc.edu/organization/ninerchess">Niner Engage</a> |
<a href="https://lichess.org/team/niner-chess-club">Lichess</a> <br>
<a href="https://www.chess.com/club/niner-chess-club">Chess.com</a> |
<a href="https://discord.gg/GAXPCuQ">Discord</a>
</div>
</footer>
</body>
</html>