-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlibrary.html
103 lines (93 loc) · 4.02 KB
/
library.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
<!DOCTYPE html>
<!--
Site skeleton created by Brian Design on youtube @ www.youtube.com/channel/UCsKsymTY_4BYR-wytLjex7A?view_as=subscriber
Created for Saskatchewan Horizon Chess Club by Nicolas Vaagen
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>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1200px, initial-scale=1.0" />
<title>SK Horizon Chess Club</title>
<link rel="stylesheet" href="./css/styles.css" />
<link rel="icon" href="./images/shcc-logo-notxt.png" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css"
integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css?family=Bebas Neue" rel="stylesheet" />
</head>
<body>
<div id="fb-root"></div>
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v20.0"
nonce="GcBFJ9AT"></script>
<!-- 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" 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>
<iframe src="https://www.libib.com/u/saskhorizonchessclub" style="width: 100%; height: 100em; border: none;"></iframe>
<!-- 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>