-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
158 lines (136 loc) · 5.17 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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<style>
* {
margin: 0px;
padding: 0px;
}
body {
background: url("im.jpg") no-repeat center center/cover;
height: 105vh;
/* background-image: url("im.jpg");
background-repeat: no-repeat;
background-size: cover; */
/* background-blend-mode: darken; */
}
::before {
opacity: 0.5;
}
.container {
/* border: 2px solid white; */
display: flex;
justify-content: center;
align-items: center;
color: white;
margin-top: 75px;
flex-direction: column;
text-align: center;
}
.cards {
display: flex;
flex-direction: column;
border: 5px solid rgba(70, 73, 66, 0.548);
border-radius: 5px;
width: 300px;
margin: auto;
color: white;
flex-wrap: wrap;
margin-top: 100px;
}
#one {
display: block;
color: white;
border: 2px solid rgb(79, 79, 138);
border-radius: 5px;
background: url("18157366.jpg");
background-size: cover;
background-repeat: no-repeat;
height: 210px;
width: auto;
}
.cards a {
text-decoration: none;
color: black;
}
.cards p {
text-align:justify;
}
button {
margin: 3px;
padding: 9px 24px;
border-radius: 5px;
background: #454130;
color: white;
margin-left: 4px;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: rgb(16 14 14);
color: white;
text-align: center;
}
</style>
<title>Umang Garden</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">Umang Garden</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/restaurantWebsite/menu.html">Menu</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/restaurantWebsite/contact.html">Order Food</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<h1>Welcome to Umang Garden</h1>
<p>Best Veg restaurant available in Shirpur</p>
</div>
<div class="cards">
<div id="one">
<!-- <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ab quis impedit nam tempore nobis? Alias
molestias .</p> -->
</div>
<div>
<p>*********** ONLY VEGETARIAN *********</p>
<p></p>
<button><a href="/restaurantWebsite/contact.html">Order Now</a> </button>
<button><a href="/restaurantWebsite/menu.html">Check Menu</a> </button>
</div>
</div>
<div class="footer">
<p>Email : [email protected] , At Kharde Bk , Shirpur-Kharde Road , Shirpur</p>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-SR1sx49pcuLnqZUnnPwx6FCym0wLsk5JZuNx2bPPENzswTNFaQU1RDvt3wT4gWFG" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-j0CNLUeiqtyaRmlzUHCPZ+Gy5fQu0dQ6eZ/xAww941Ai1SxSY+0EQqNXNE6DZiVc" crossorigin="anonymous"></script>
-->
</body>
</html>