-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
49 lines (47 loc) · 2.06 KB
/
Copy pathabout.html
File metadata and controls
49 lines (47 loc) · 2.06 KB
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
<!DOCTYPE html>
<html>
<head>
<title>About Code Club</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Concert+One&family=Montserrat&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<!--Layout container-->
<div id="Layout-container">
<!-- 1) nav bar -->
<nav>
<span style="font-size: 1.5em;">CodeClub</span>
<a href="index.html">Home</a>
<a href="password.html">Members</a>
</nav>
<!-- 2) header -->
<div class="row"><!--header row-->
<div class="left-column">
<!--left header column-->
<h1 class="main-heading">About Code Club</h1>
</div><!--right header column-->
<div class="right-column" id="right-col-about"></div>
</div>
<!-- 3) Content-->
<div id="content">
<h2>Discover More About Code Club</h2>
<p>Code Club was started by Greg Hamilton as a place for friends to gather together and have fun with code.</p>
<p>We meet at a top secret location once a month. Locations, dates and times are published here on this website, in the members area 1 week before our next meeting.</p>
<p>Here are some things we love to work on:
<ul>
<li>Websites</li>
<li>Apps</li>
<li>Games (especially retro games)</li>
<li>Internet of Things (IoT)</li>
<li>Robotics</li>
<li>Brewing the ultimate coffee blend</li>
</ul>
</p>
<p>How to Join:</p>
<p>Wait for a secret invite in the post!</p>
</div>
</div>
</body>
</html>