-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
32 lines (28 loc) · 1023 Bytes
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Grocery List</title>
<meta name="description" content="Keeping track of our grocery list.">
<meta name="author" content="Rocco P">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<main class="layout">
<header class="header">
<h1>Grocery List</h1>
</header>
<form id="newItem" class="newitem" autocomplete="off">
<label for="item" class="line-label">New Item</label>
<div class="addnew">
<input type="text" name="item" id="item" class="form-component inpt" placeholder="What do you need?" required>
<input type="submit" value="Add" id="submit" class="form-component btn">
</div>
</form>
<ul id="shoppingList" class="shoppinglist"></ul>
</main>
<script src="js/main.js"></script>
</body>
</html>