-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (69 loc) · 2.89 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Niner Chess Club Homepage</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="baseTemplate.css">
<link rel="stylesheet" type="text/css" href="index.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="index.js"></script>
</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 id="dialog">
<h4>REMINDER:</h4>
<p>OTB meetup on Sunday 4/11 at 1 PM EST</p>
</div>
<div class="wrapper">
<div class="pageHeader">
<h1>Announcements</h1>
</div>
<div id="indexBody">
<div id="indexPuzzle">
<img id="dailyPuzzle" src="images/dailyPuzzle.PNG" alt="Daily Puzzle" width="250" height="250">
<p>Daily Puzzle: White to move!</p>
</div>
<div id="indexText">
<h2>03/19/2021 3:00 PM EST: Lichess Arena</h2>
<p>Come relax with us at the end of the week with a Lichess Arena! More details available on the Calendar</p>
<h2>03/14/2021 2:30 PM EST: Meetup at the Student Union</h2>
<p>Come join us this Sunday at the Student Union to play some chess! We will be meeting in Norms Loft, which is on the second floor.
Hope to see you all there!</p>
</div>
<div id="indexDiscord">
<iframe src="https://discord.com/widget?id=750196816271769690&theme=dark" width="250" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</div>
</div>
</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>