-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresturant form.html
More file actions
58 lines (54 loc) · 1.99 KB
/
resturant form.html
File metadata and controls
58 lines (54 loc) · 1.99 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Reservation</title>
<link rel="stylesheet" href="resturant form.css">
</head>
<body>
<nav>
<ul>
<li><a href="personal.html">Personal website </a></li>
<li><a href="about me.html">About Me</a></li>
<li><a href="GALLERY.html">Gallery</a></li>
<li><a href="Hobies and intrest.html">Hobbies</a></li>
<li><a href="resturant form.html">Restaurant Reservation</a></li>
</ul>
</nav>
<div class="container">
<div class="box">
<form>
<h1>Restaurant Reservation</h1>
<div class="inputBox">
<label for="name">Name:</label>
<input type="text" id="name" name="name">
</div>
<div class="inputBox">
<label for="number">Number of People:</label>
<input type="number" id="number" name="number">
</div>
<div class="inputBox">
<label for="date">Date:</label>
<input type="date" id="date" name="date">
</div>
<div class="inputBox">
<label for="time">Time:</label>
<input type="time" id="time" name="time">
</div>
<div class="inputBox">
<label for="email">Email:</label>
<input type="email" id="email" name="email">
</div>
<div class="inputBox">
<label for="telephone">Telephone:</label>
<input type="tel" id="telephone" name="telephone">
</div>
<div class="inputBox">
<input type="submit" value="Reserve Now">
</div>
</form>
</div>
</div>
</body>
</html>