-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactInfo.html
168 lines (133 loc) · 3.5 KB
/
contactInfo.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="windows-1252">
<link rel="stylesheet" type="text/css" href="mainPageStyle2.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Champ Tech</title>
<script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyBDbC1WZzFUc8VYs65TKROqfwDEL8umV-c">
</script>
</head>
<body class="textMod">
<div class="mainBackground">
<header>
<style scoped>
div {
width: 100%;
padding: 10%;
}
</style>
</header>
<h1>More About Us!</h1>
<h2> All of our contact info (Emails (Personal and school) phone numbers etc) </h2>
<nav>
<ul>
<li><a href="index.html"><img class="navImages" src="Navigation/homeButton.png" alt="Logo"></a>
</li>
<li><a href="contactInfo.html"><img class="navImages" src="Navigation/contactButton.png" alt="Logo"></a>
</li>
<li id="Item2"><a onmouseover="OpenMenu('Item2Submenu')"><img class="navImages" src="Navigation/menuButton.png" alt="Logo"></a>
<ul id="Item2Submenu" onmouseover="KeepSubmenu()"
onmouseout="CloseMenu()">
<a href="hardware.html"><img class="navImages2" src="Navigation/hardwareButton.png" alt="Logo"></a>
<a href="security.html"><img class="navImages2" src="Navigation/securityButton.png" alt="Logo"></a>
<a href="software.html"><img class="navImages2" src="Navigation/softwareEssentialsButton.png" alt="Logo"></a>
</ul>
</li>
</ul>
</nav>
<br><br><br><br><br><br><br><br><br>
<div class="bodyBorder">
<div class="bodyInfo">
<h3>Brian Zhang</h3>
<p>
<br><br><br>
Email: <a href="mailto:[email protected]"> brian.zhang@
mymail.
champlain.edu </a>
</p>
<p>
Phone: (802)370-7261
</p>
<p>
School: <a href="http://champlain.edu"> Champlain College </a>
</p>
<h3>Damon Devani</h3>
<p>
<br><br><br><br>
Email: <a href="mailto:[email protected]"> damon.devani@
mymail.
champlain.edu </a>
</p>
<p>
Phone: (978)886-3473
</p>
<p>
<a href="http://champlain.edu">School: Champlain College </a>
</p>
</div>
</div>
<div class="bodyBorderTwo" >
<div class="bodyInfoTwo" id="googleMap">
</div>
</div>
</div>
<footer>
@copyright Brian and Damon
</footer>
<p>
<a href="http://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="http://jigsaw.w3.org/css-validator/images/vcss"
alt="Valid CSS!" />
</a>
</p>
<script>
var Item;
var Timer;
document.onclick=CloseMenu;
function OpenMenu(Menu)
{
if(Item)
{
Item.style.visibility="hidden";
}
Item=document.getElementById(Menu);
Item.style.visibility="visible";
}
function CloseMenu()
{
Timer = window.setTimeout(PerformClose, 500);
}
function PerformClose()
{
if(Item)
{
Item.style.visibility="hidden";
}
}
function KeepSubmenu()
{
window.clearTimeout(Timer);
}
</script>
<script>
var myCenter=new google.maps.LatLng(44.4757, -73.2057);
function initialize()
{
var mapProp = {
center:myCenter,
zoom:5,
mapTypeId:google.maps.MapTypeId.ROADMAP
};
var map=new google.maps.Map(document.getElementById("googleMap"),mapProp);
var marker=new google.maps.Marker({
position:myCenter,
animation:google.maps.Animation.BOUNCE
});
marker.setMap(map);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</body>
</html>