-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (32 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title>FairviewHS Code Club</title>
<link href="styles/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<nav>
<img src="img/logo-main.png" class="logo">
<ul>
<li><a href="#">Home</a></li>
<li><a href="WebDev.html">Project Development Resources</a></li>
<li><a href="OtherDev.html">Project Showcases</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<div class="row">
<a href="#"><div class="col">Learning</div></a> <!-- col1 -->
<a href="#"><div class="col">Collaborating</div></a> <!-- col2 -->
<a href="#"><div class="col">Competing</div></a> <!-- col3 -->
</div>
<div class="tx">Welcome to the Fairview Code Club's Web Page!<br>This page was built and is maintained by members of the club.<br><br>We have quite a bit of information to fill in here</div>
<footer>
<div id="ad">Try out Fairview's other Tech Clubs:</div>
<a href="https://www.fairviewhs.org/sites/webteam"><img src="img/webteam-logo.png" id="webteam"/></a>
<a href="https://www.fairviewhs.org/sites/robotics"><img src="img/robotics-logo.png" id="robotics"/></a>
<img src="img/girlswhocodegwc-logo.png" id="girlscode"/>
</footer>
</body>
</html>