-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (27 loc) · 768 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (27 loc) · 768 Bytes
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
<!doctype html>
<html>
<head>
<title>Menu</title>
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker|Josefin+Sans" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="app.js"></script>
</head>
<body>
<header>
<h1>Cafe Josué</h1>
<hr>
<h2 id="menuTab">Menu</h2>
<h2 id="addTab">Add Item to Menu</h2>
<hr>
</header>
<section class="menu">
</section>
<section class="addItem hidden">
<h2>Add menu item:</h2>
<input id="name" placeholder='Menu item name'>
<input id="desc" placeholder="Menu item description">
<input id="price" placeholder="Menu item price">
<button>Submit</button>
</section>
</body>
</html>