-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworkshops.html
114 lines (106 loc) · 4.05 KB
/
workshops.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
<!DOCTYPE html>
<!--
Made by Nicolas Vaagen for Horizon Chess Club
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<html lang="en">
<head>
<!-- set title and viewport -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=1200px, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css?family=Bebas Neue"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.14.0/css/all.css"
integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./css/styles.css" />
<link rel="stylesheet" href="./css/doc-page.css" />
<link rel="icon" href="./images/shcc-logo-notxt.png" />
<title>SHCC: Workshops</title>
</head>
<body>
<!-- Navbar Section -->
<nav class="navbar">
<div class="navbar__container">
<a href="about.html" class="navbar__logo"><img src="./images/shcc-logo-notxt.png" /></a>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="index.html" class="navbar__links">HOME</a>
</li>
<li class="navbar__item">
<a href="tournaments.html" class="navbar__links">TOURNAMENTS</a>
</li>
<li class="navbar__item">
<a href="workshops.html" id="navbar__links_current" class="navbar__links">WORKSHOPS</a>
</li>
<li class="navbar__item">
<a href="activities.html" class="navbar__links">ACTIVITIES</a>
</li>
<li class="navbar__item">
<a href="calendar.html" class="navbar__links">CALENDAR</a>
</li>
<li class="navbar__item">
<a href="contact-us.html" class="navbar__links">CONTACT US</a>
</li>
</ul>
</div>
</nav>
<!-- upcoming WORKSHOPS section -->
<section class="doc__container">
<iframe
src="https://docs.google.com/document/d/182DtWhK_vq-MUs4SLql8ch9ehl5wtRjK9M0eqx7VEws/pub?embedded=true"
class="document"
style="height: 2600px;"
></iframe>
</section>
<!-- Footer Section -->
<div class="footer__container">
<div class="footer__links">
<div class="footer__link--wrapper">
<div class="footer__link--items">
<h2>About Us</h2>
<a href="about.html">About the Club</a>
<a href="calendar.html">Calendar</a>
<a href="contact-us.html">Contact Us</a>
</div>
</div>
<div class="footer__link--wrapper">
<div class="footer__link--items">
<h2>Resources</h2>
<a href="https://www.libib.com/u/saskhorizonchessclub">Library</a>
</div>
</div>
<div class="footer__link--wrapper">
<div class="footer__link--items">
<h2>Social Media</h2>
<a href="https://www.facebook.com/skhorizonchess/">Facebook</a>
<a href="https://www.youtube.com/channel/UCW5Xgnst9kg3CsbSJbXYThw">Youtube channel</a>
</div>
</div>
</div>
<section class="social__media">
<div class="social__media--wrap">
<div class="footer__logo promo">
<a href="about.html"><img src="./images/shcc-logo-notxt.png" />
<BR>
<small>Website made by: Nicolas Vaagen</small></a>
</div>
<div id="quadrant" class="footer__logo promo">
<a href="https://www.quadrant.net/">
<img src="images/quadrant.svg">
<BR>
<small>Hosting and Web services</small>
</a>
</div>
</div>
</section>
</div>
</body>
</html>