-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (62 loc) · 2.86 KB
/
index.html
File metadata and controls
67 lines (62 loc) · 2.86 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
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>Dakens Restraunt</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<header class="box">
<ul class="header" type="none">
<a href="#"><li>Home</li></a>
<a href="Menu.html"><li>Menu</li></a>
<a href="#"><li>Basket</li></a>
<a href="#"><li>About Us</li></a>
</ul>
<div class="banner">
<h1>Daken-Restaurant</h1>
<h4>Welcome to Daken-Restraunt a place to make memories with the best delicious meals around Minnesota.</h4>
</div>
</header>
<div class="wd">
<div class="content">
<h2>Table Reservation</h2>
<div class="date1">
<form class="date" action="Reservation" method="post">
<div class="input">
<label>First-Name</label>
<input type="text"placeholder="James" required>
</div>
<div class="input">
<label>Last-Name</label>
<input type="text" placeholder="Doe" required>
</div>
<div class="input">
<label for="number">Number of People</label>
<input type="number" placeholder="1" required>
</div>
<div class="input">
<label for="date">Date</label>
<input type="datetime-local" id="date">
</div>
<div class="input">
<label>Email</label>
<input type="email" placeholder="jamesdoe@gmail.com">
</div>
<div class="radio">
<label for="Vegeterian">Vegeterian</label>
<input type="radio" id="Vegeterian" name="omnivorous" required>
</div>
<div class="radio">
<label for="Non-Vegeterian">Non-Vegeterian</label>
<input type="radio" id="Non-Vegeterian" name="omnivorous" required>
</div>
<div class="submit input">
<input type="submit">
</div>
</form>
<footer>
<h4 class="cap"><caption>~Fabricate Best Memories With Our Special Recipes~</caption></h4>
</footer>
</div>
</div>
</div>