-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
73 lines (71 loc) · 2.14 KB
/
header.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
<script>
$( "button#discover" )
.mouseover(function() {
$( "button#discover" ).html( "Girls<br>Grades<br>3-6" );
})
.mouseout(function() {
$( "button#discover" ).html( "Discover" );
});
$( "button#explore" )
.mouseover(function() {
$( "button#explore" ).html( "Girls<br>Grades<br>7-9" );
})
.mouseout(function() {
$( "button#explore" ).html( "Explore" );
});
$( "button#create" )
.mouseover(function() {
$( "button#create" ).html( "Girls<br>Grades<br>10-12" );
})
.mouseout(function() {
$( "button#create" ).html( "Create" );
});
$( "button#summer" )
.mouseover(function() {
$( "button#summer" ).html( "Boys<br>and<br>Girls" );
})
.mouseout(function() {
$( "button#summer" ).html( "Summer<br>Camp" );
});
$( "button#school" )
.mouseover(function() {
$( "button#school" ).html( "Schools<br>Events" );
})
.mouseout(function() {
$( "button#school" ).html( "Outreach" );
});
</script>
<div class="header">
<a href="http://tech.mines.edu/discover">
<img id="dec_logo" src="images/logos/DEClogo.png">
</a>
<a href="https://www.mines.edu/" target = "_blank">
<img id="mines_logo" src="images/logos/mines.png">
</a>
</div>
<div class="nav-bar">
<ul>
<li><a href="index.html">Welcome</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<!--
<li><a href="forms.html">Forms</a></li>
-->
<li><a href="community.html">Community</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="overseas.html">Overseas</a></li>
<li><a href="in_action.html">DECtech In Action</a></li>
</ul>
</div>
<div class="class-buttons" id="homepage">
<button onClick="moveTo('discover/index')"
id="discover">Discover</button>
<button onClick="moveTo('explore/index')"
id="explore">Explore</button>
<button onClick="moveTo('create/index')"
id="create">Create</button>
<button onClick="moveTo('summer/index')"
id="summer">Summer<br>Camp</button>
<button onClick="moveTo('afterschool/index')"
id="school">Outreach</button>
</div>