-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.55 KB
/
Copy pathindex.html
File metadata and controls
43 lines (42 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style.css"></link>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Rubik:400,700" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<section>
<h1>Table Finder</h1>
<h4>Pick your table now</h4>
<div id="table">
<div class="available">1</div>
<div class="available">2</div>
<div class="available">3</div>
<div class="available">4</div>
<div class="available">5</div>
<div class="available">6</div>
<div class="available">7</div>
<div class="available">8</div>
<div class="available">9</div>
</div>
</section>
<section id="bottom" >
<form>
<div id="cancel">x</div>
<h2>New Reservation</h2>
<h3 id="tableNumber">Table Number: <span></span></h3>
<input type="text" placeholder="name">
<input type="text" placeholder="phone">
<input type="text" placeholder="party size">
<button type="button" id="save">SAVE</button>
</form>
</section>
<script src="script.js"></script>
</body>
</html>