-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.html
103 lines (96 loc) · 3.67 KB
/
table.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>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Derby Dining | Book a Table</title>
<link rel = "stylesheet" href = "stylesheet.css">
</head>
<body>
<!-- header -->
<header>
<!-- banner section -->
<section class = "banner">
<ul class = "banner-slider">
<li class = "banner-item active-banner">
<div class = "container">
<h1>Enjoy the Kentucky Derby</h1>
<p class = "text">with our delicious food!</p>
<button type = "button">Book your table</button>
</div>
</li>
</ul>
</section>
<!-- end of banner section -->
<!--Navbar-->
<div class="nav">
<input type="checkbox" id="nav-check">
<div class="nav-header">
<div class="nav-title">
Derby Dining
</div>
</div>
<div class="nav-btn">
<label for="nav-check">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="nav-links">
<a href="home.html">Home</a>
<a href="menu.html">Menu</a>
<a href="drinks.html">Drinks</a>
<a href="table.html">Book a Table</a>
<a href="login.html">Sign Up</a>
</div>
</div>
</header>
<!--End of Navbar-->
<div class = "card-container">
</div>
<div class = "card-content">
<h3>Book a Table</h3>
<form>
<div class = "form-row">
<select name = "days">
<option value = "day-select">Select Day</option>
<option value = "sunday">Sunday</option>
<option value = "monday">Monday</option>
<option value = "tuesday">Tuesday</option>
<option value = "wednesday">Wednesday</option>
<option value = "thursday">Thursday</option>
<option value = "friday">Friday</option>
<option value = "saturday">Saturday</option>
</select>
<select name = "hours">
<option value = "hour-select">Select Hour</option>
<option value = "10">12: 00 PM</option>
<option value = "10">02: 00 PM</option>
<option value = "10">04: 00 PM</option>
<option value = "10">06: 00 PM</option>
<option value = "10">08: 00 PM</option>
<option value = "10">10: 00 PM</option>
</select>
</div>
<div class = "form-row">
<input type = "text" placeholder="Full Name">
<input type = "text" placeholder="Phone Number">
</div>
<div class = "form-row">
<input type = "number" placeholder="How Many Persons?" min = "1">
<input type = "submit" value = "BOOK TABLE">
</div>
</form>
</div>
</div>
</section>
<footer>
<p class = "text">Copyright © Derby Dining 2023.</p>
</footer>
<!-- end of footer -->
<script src="app.js"></script>
</body>
</html>