-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (83 loc) · 3.3 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Restaurant</title>
<meta name="viewport" content="width=device-width,intial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular-route.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/timepicker/1.3.5/jquery.timepicker.min.js"></script>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script type="text/javascript" src="JavaScript.js"></script>
<link rel="stylesheet" href="StyleSheet.css">
<link rel="stylesheet" href="StyleSheet_Media.css">
<link href='https://fonts.googleapis.com/css?family=Mr De Haviland' rel='stylesheet'>
</head>
<body>
<!-- Horizontal Bar for Social Icons -->
<div id="social-bar">
<i class="fa fa-facebook"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-twitter"></i>
</div>
<!-- End of Horizontal Bar for Social Icons -->
<!-- Navigation Bar -->
<nav>
<h1>Ustad's Kitchen</h1>
<ul>
<li><a href="#"> Home </a></li>
<li><a href="#"> Restaurant </a></li>
<li><a href="#"> Menu </a></li>
<li><a href="#"> Online Order</a></li>
<li><a href="#"> Team </a></li>
<li><a href="#"> Contact </a></li>
</ul>
<label id="menu-icon" > <i class="fas fa-bars"></i> </label>
</nav>
<!-- End of Navigation Bar -->
<!-- Main Frame -->
<div class="main-frame">
<!-- Reservations box -->
<div class="box">
<h1>Ustad's Kitchen</h1>
<h2> Welcome! </h2>
<h5>We Serve Eternal Happiness in the form of mouth watering delicacies!!</h5>
<h3>Reservations</h3>
<input type="text" id="datepicker" placeholder="Date">
<span class="fa fa-calendar "></span>
<input type="text" class="timepicker" id="timepicker" placeholder="Time">
<span class="fa fa-clock-o"></span>
<input list="Seats" type="text" class="people" id="people" name="" value="" placeholder="Seats to be Reserved">
<datalist class="people" id="Seats">
<option>1 Person</option>
<option>2 People</option>
<option>3 People</option>
<option>4 People</option>
<option>5 People</option>
<option>6 People</option>
<option>7 People</option>
</datalist>
<span class="fa fa-users "></span>
<br>
<button type="submit" class="btn" name="button" onclick="validate();">BOOK NOW</button>
<span class="fa fa-"></span>
<br>
<br>
<hr align="center" width="60%">
<br>
<div class="footer">
<p>Address<br>Camp Area,Opposite EEFA HOTEL, Belgaum</p>
<i class="fa fa-facebook"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-twitter"></i>
<br>
<span>©2019 DRAGO, Ustad's Kitchen Restaurant.</span>
</div>
</div>
<!-- End of Reservations box -->
</div>
<!-- End of Main Frame -->
</body>
</html>