-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfnsjdb.html
45 lines (39 loc) · 1.24 KB
/
fnsjdb.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Little Lemon</title>
<meta property="og:title" content="Our Menu">
<meta property="og:type" content="website">
<meta property="og:image" content="logo.png">
<meta property="og:url" content="https://littlelemon/">
<meta property="og:description" content="Little Lemon is a family-owned Mediterranean restaurant, focused on traditional recipes served with a modern twist.">
<meta property="og:locale" content="en_US">
<meta property="og:site_name" content="Little Lemon">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img src="logo.png">
</header>
<main>
<form>
<div>
<label for="email1">Enter Email</label>
<input type="email" id="email1" name="email1">
</div>
<div>
<input type="date" id="date1" name="date1">
</div>
<div>
<label for="people">Number of people</label>
<input type="number" id="people" min="1" max="8" name="people">
</div>
<div>
<label for="agree">I agree to the cancellation policy</label>
<input type="checkbox" id="agree" name="agree">
</div>
<button type="submit">Book Now </button>
</form>
</main>
</body>
</html>