-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (93 loc) · 2.87 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Delicious Karnataka | Home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link rel="icon" type="image/x-icon" href="fav.ico">
</head>
<style>
body, html {
height: 100%;
margin: 0;
}
th, td {
padding-top: 10px;
padding-bottom: 20px;
padding-left: 20px;
padding-right: 10px;
}
.bg {
/* The image used */
background-image: url("img/bg.png");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bg1 {
/* The image used */
background-image: url("img/home.png");
/* Full height */
height: 200%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<!-- Brand/logo -->
<a class="navbar-brand" href="index.html">
<img src="img/logoW.png" alt="logo" style="width:100px;">
</a>
<!-- Links -->
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="places.html">Places</a>
</li>
<li class="nav-item">
<a class="nav-link" href="gallery.html">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactus.html">Contact Us</a>
</li>
</ul>
</nav>
<div class="bg"></div>
<div class="jumbotron jumbotron-fluid">
<center><div class="container">
<h1>Delicious Karnataka</h1>
<!--<img src="img/bg.png" alt="Girl in a jacket" width="1200" height="600"> -->
</div></center>
</div>
<center><table>
<tr>
<td><img src = "img/bisi.png" width = "400" ></td>
<td><img src = "img/bonda.png" width = "400"></td>
<td><img src = "img/pak.png" width = "400"></td>
</tr>
</table></center>
<br><br>
<!--<div class="bg1" usemap="#workmap"></div>-->
<img src="img/home.png" alt="Workplace" usemap="#workmap" width=100% >
<map name="workmap">
<area shape="rect" coords="814,100,1036,222" href="bisi.html">
<area shape="rect" coords="289,318,540,440" href="bun.html">
<area shape="rect" coords="814,500,1036,622" href="neer.html">
<area shape="rect" coords="289,718,540,840" href="kunda.html">
<area shape="rect" coords="814,900,1036,1022" href="karadantu.html">
<area shape="rect" coords="579,1169,769,1308" href="places.html">
</map>
</body>
</html>