-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
155 lines (133 loc) · 5.66 KB
/
events.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Events</title>
<script src="https://kit.fontawesome.com/8771781f50.js" crossorigin="anonymous"></script>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./static/styles.css">
<link rel="stylesheet" href="./static/events.css">
</head>
<body id="body">
<div class="main">
<!-- HEADER/NAV-BAR -->
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div>
<img id="headerLogo" src="./static/img/logo.png" alt="Chess Logo">
</div>
<span class="navbar-brand mb-0 h1"><h1>YRChess</h1></span>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbar">
<div class="navbar-nav">
<a class="nav-item nav-link" href="./index.html">Home</a>
<a class="nav-item nav-link" href="./about.html">About</a>
<a class="nav-item nav-link" href="./events.html">Events</a>
<a class="nav-item nav-link" href="./contact.html">Contact Us</a>
</div>
</div>
</nav>
</header>
<!-- BANNER -->
<div id="bannerBackground" style="background-image: url('./static/img/chessboard_bg.png');">
<div id="banner">
<h1>Chess Events for Everyone!</h1>
</div>
</div>
<!-- MAIN PAGE GOES HERE -->
<main class="full-page">
<!-- UPCOMING EVENTS -->
<div class="section" id="upcomingEvents">
<div class="title-block">
<h1>Upcoming Events</h1>
</div>
<div class="text-block text-center">
<h3>Our next planned event will take place in 2024. </h3>
<h3>Keep an eye out for updates about this tournament when the time comes!</h3>
</div>
</div>
<div class="darker-background">
<!-- PAST EVENTS -->
<div id="pastEvents">
<div class="title-block">
<h1>Past Events</h1>
</div>
<div class="event-row">
<div class="event-info-row">
<div id="chessboard">
<img src="./static/img/chessboard.png" alt="Chessboard">
</div>
<div class="">
<div class="text-block">
<h3>YRChess First Annual Casual Tournament</h3>
<div class="textRow">
<div class="text-part"><h5>Date and time: Sat, Mar 11, 2023 10:30 AM - 6:30 PM
EST</h5></div>
<div class="text-part"><h5>Location: 130 Yorkland Blvd 130 Yorkland Boulevard
Toronto, ON M2J 1R5</h5>
</div>
</div>
<h5>
Event details: Join us on March 11 from 10:30 am to 6:30 pm for YRChess's First
Annual Casual Event! Bring along friends, family, or colleagues to enjoy a couple of
relaxing games of chess and refreshments!
</h5>
<h5>
Want to try out 4 player chess or play against a GM? Choose our General Admission
Ticket! Want to do all that and duke it out with others near your skill level?
Choose our Competitive Tickets!
</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<hr>
<!-- FOOTER -->
<footer>
<hr>
<div id="footer">
<div id="footerInfo">
<img id="footerLogo" src="./static/img/img.png" alt="">
<div class="socials">
<a href=""><i class="fa-brands fa-discord"></i></a>
<a href=""><i class="fa-brands fa-github"></i></a>
</div>
<h5>[email protected]</h5>
<h6>© 2023 YRChess. All rights reserved.</h6>
</div>
</div>
</footer>
</div>
<!-- IMPORTS -->
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script>
</body>
</html>