-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_change.html
103 lines (87 loc) · 3.05 KB
/
index_change.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="index_change_style.css">
<link href="https://fonts.googleapis.com/css?family=PT+Serif" rel="stylesheet">
<title>DeliciousMenu.com</title>
</head>
<body>
<div id="body">
<!-- the div with id body removed -->
<!-- code for the navigation bar -->
<div id="navbar" class="font navbar">
<nav>
<a href="index_change.html"><strong>Home </strong></a>
<a href="login_change.html"><strong>Login</strong></a>
<a href="#about_us"><strong>About us!</strong></a>
</nav>
</div>
<div id="content">
<header id="website_name">
Delicious Menu
</header>
<div class="container">
<h3 class="court_info">1.B-Block</h3>
<p class="description">
TEXT
</p>
<a href="changed_b_block.html"><img class="food_img"src="Food_point_img.jpg"></a><br>
<h3 class="court_info">2.Pi-R-Cube</h3>
<p class="description">
TEXT
</p>
<a href="pi_r_cube.html"><img class="food_img" class="food_img" src="pi_r_cube.jpg"></a><br>
<h3 class="court_info">3.Parking-Lot</h3>
<p class="description">
TEXT
</p>
<a href="parking_lot.html"><img class="food_img" src="Parking_lot_img.jpg"></a><br>
</div>
</div>
<div id="about_us">
<strong>About Us</strong>
<div id="some_data">
<div class="some_thing">
<strong>Address</strong>:Outer Ring Rd, Banashankari 3rd Stage, Banashankari, Bengaluru, Karnataka 560085
</div>
<div class="some_thing">
<strong>Campus</strong>:Urban
</div>
<div class="some_thing">
<strong>Terms Of Use.</strong>
</div>
<div class="some_thing">
<strong>License</strong>:All rights reserved.
</div>
</div>
</div>
</div>
<div id="social_media">
<ul>
<li><a href="#index_change.html"><img src="facebook.jpg" height="30" width="30"></a></li>
<li><a href="#index_change.html"><img src="pintrest.jpg" height="30" width="30"></a></li>
<li><a href="#index_change.html"><img src="instagram.jpg" height="30" width="30"></a></li>
<li><a href="#index_change.html"><img src="google+.jpg" height="30" width="30"></a></li>
<li><a href="#index_change.html"><img src="twitter.jpg" height="30" width="30"></a></li>
<li><a href="#index_change.html"><img src="whatsapp.jpg" height="30" width="30"></a></li>
</ul>
</div>
<script type="text/javascript">
//Java script to change the color of the navigation bar when mouse enters or leaves it.
// var nav=document.getElementById("navbar");
// nav.addEventListener("mouseenter",addcolor);
// function addcolor()
// {
// nav.classList.add('color');
// }
// nav.addEventListener('mouseleave',removecolor);
// function removecolor()
// {
// nav.classList.remove('color');
// }
// window.onscroll=function(){
// nav.classList.remove('color');
// }
</script>
</body>
</html>