forked from philippejlyu/Programming-Club-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (83 loc) · 2.56 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
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
<!DOCTYPE html>
<html>
<head>
<title>BMSS Programming Club</title>
<link rel="stylesheet" type="text/css" href="styleindex.css">
<link rel="shortcut icon" type="image/png" href="./Images/Favicon.png">
</head>
<body>
<div class="navigation">
<center>
<ul>
<li><a href="about.html" class="button">About</a></li>
<li><a href="learn.html" class="button">Learn programming</a></li>
<li><a href="index.html" class="button">Home</a></li>
<div id="title">
<li><a href="index.html" class="logo"><img src="./Images/Club-Logo.png" alt:"BMSS Programming Club" height="55"></a></li>
</div>
</ul>
</center>
</div>
<div class="banner">
<!-- The background image for the banner is included in the .css file -->
<div id="bannerContent">
<center>
<h1>BMSS Programming club</h1>
<h2>Tuesday at lunch Room 319</h2>
<h2>No programming experience required</h2>
</div>
</div>
<div class="languages">
<center>
<div class="languagesTitle">
<h1>Some languages we know</h1>
<h3>Join and we'll make this list bigger</h3>
</div>
<ul>
<li><h1>Java</h1>
<li><img src="./Images/Java-Logo.png" alt:"Java logo" height="128"></li>
</ul>
<div class="divider"></div>
<ul>
<li><h1>HTML/CSS</h1></li>
<li><img src="./Images/HTML-logo.png" alt:"HTML Logo" height="128"></li>
</ul>
<div class="divider"></div>
<ul>
<li><h1>Swift</h1></li>
<li><img src="./Images/Swift-Logo.png" alt:"Swift Logo" height="128"></li>
</ul>
<div class="divider"></div>
<ul>
<li><h1>Python</h1></li>
<li><img src="./Images/Python-Logo.png" alt:"Python Logo" height="128"></li>
</ul>
</center>
</div>
<div class="learnToCode">
<center>
<h1>Want to learn programming?</h1>
<h2>The programming club leaders will be teaching programming</h2>
<h3>The following list shows when we'll begin teaching:</h3>
<ul>
<li><h2>HTML</h2></li>
<li><h2>Every Tuesday at Lunch</h2></li>
</ul>
<ul>
<li><h2>Unity/C#</h2></li>
<li><h2>Every Tuesday at Lumch</h2></li>
</ul>
<img src="./Images/SkiMask-Hacker.png" width="400">
</center>
</div>
<div class="footer">
<div class="footerContent">
<center>
<h3>Tuesday at Lunch @ Room 319<br><a href="https://github.com/philippejlyu/Programming-Club-Website">Fork me on Github</a></h3>
</center>
<center>
<h5><a href="index.html">Home</a> <a href="learn.html">Learn Programming</a> <a href="about.html">About</a></h5>
</div>
</div>
</body>
</html>