-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.html
92 lines (74 loc) · 1.88 KB
/
nav.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
<html>
<style>
body{
background-color:black;
}
#header ul {
list-style: none;
padding:0;
margin:0;
padding-left:200px;
}
#header li {
display: inline;
border-style: solid;
border-color:red;
border-width: 1px 1px 0 1px;
margin: 0 0.5em 0 0;
background: pink;
padding-bottom: 5px;
padding-top:3px;
padding-left:3px;
width:100px;
}
#header li a {
padding: 0 1em;
}
#header li {
float: left;
border-style: solid;
border-bottom-width: 0;
margin: 0 0.5em 0 0;
}
h1 {
margin: 0;
padding: 0 0 1em 0;
}
h3{
color:white;
}
#header #selected {
position: relative;
top: 1px;
background: pink;
}
#map { height: 70%; width :50%; margin-left:auto; margin-right:auto;}
</style>
<body>
<center><h3>Local Screen</h3></center>
<div id="header" style="padding-top:54px;">
<ul>
<li><a href="signup.html" target="bottom">HOME</a></li>
<li id="selected"><a href="aboutus.html" target="bottom">ABOUT</a></li>
<li id="selected"><a href="layout.html" target="bottom">TEACHER</a></li>
<li id="selected"><a href="student.html" target="bottom">STUDENT</a></li>
<li id="selected"><a href="teacherdetails.html" target="bottom">DETAILS</a></li>
<li id="selected"><a href="Requestmeet.html" target="bottom">MEET</a></li>
<li id="selected"><a href="contact.html" target="bottom">CONTACT</a></li>
<li id="selected"><a href="logout.html" target="_parent">LOGOUT</a></li>
</ul>
</div>
<div id="map"> </div>
<script>
function myMap() {
var mapOptions = {
center: new google.maps.LatLng(51.5, -0.12),
zoom: 10,
mapTypeId: google.maps.MapTypeId.HYBRID
}
var map = new google.maps.Map(document.getElementById("map"), mapOptions);
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCQM-4J_xeDCz2VpFVLsjXwCJT1fDQS-tA&callback=myMap"></script>
</body>
</html>