-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path13.html
More file actions
48 lines (48 loc) · 1.96 KB
/
13.html
File metadata and controls
48 lines (48 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Nyagrodha</title>
<meta property="og:title" content="Our menu">
<meta property="og:type" content="website">
<meta property="og:image" content="image1.png">
<meta property="og:url" content="http://nyagrodha">
<meta property="og:description" content="Nyagrodha is a south Indian cafe that serve all type of south Indian foods.">
<link rel-"stylesheet" href="10.css">
</head>
<body>
<header>
<img src="img1.jpg" width="550" height="300" /> <!--just for example-->
</header>
<nav>
<ul>
<li><a href="index1.html">Home</a></li>
<li><a href="location.html">Location</a></li> <!--just for example-->
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
<main>
<h1>Book a Table</h1>
<form method="POST">
<div>
<label for="Booking_date">Booking Date</label>
<input type="date" id="date" name="date">
</div>
<div>
<label for="Booking_people">Number of people</label>
<input type="range" id="booking" name="booking" min="1" max="10" value="4" oninput="this.nextElementSibling.value=this.value">
<output>4</output>
</div>
<div>
<label for="Booking_location">Booking Location</label>
<input id="booking_location" name="booking_location" list="location">
<datalist id="location">
<option value="Bombay"></option>
<option value="Bangaluru"></option>
</datalist>
</div>
<div>
<button type="submit">Book Table</button>
</div>
</form>
</main>
<footer>