forked from grovecodingclub/grovecodingclub.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.05 KB
/
index.html
File metadata and controls
25 lines (25 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="script.js">
</script>
</head>
<body>
<div id="header">
<a href="https://grovecodingclub.github.io/">
<img src="http://u.cubeupload.com/doodthedoodthedood/Os2wJL.png" id="logo">
</a>
<table>
<row id="menu">
<button class="menubutton" id="about" onclick="show('aboutd')" onblur="hide('aboutd')">About</button>
<button class="menubutton" id="members" onclick="show('membersd')" onblur="hide('membersd')">Members</button>
<button class="menubutton" id="projects" onclick="show('projectsd')" onblur="hide('projectsd')">Projects</button>
</row>
</table>
</div>
<div class="topdiv" id="aboutd">sup1</div>
<div class="topdiv" id="membersd">sup2</div>
<div class="topdiv" id="projectsd">sup3<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div>
</body>
</html>