This repository has been archived by the owner on Jun 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (45 loc) · 1.58 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Shopper v0.1</title>
<link rel="stylesheet" href="//yui.yahooapis.com/pure/0.5.0/pure-min.css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:700">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/shopper.css">
<script src="//code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="scripts/shopper.js"></script>
</head>
<body class="preload">
<header id="title-bar">
<div class="content">
<h1 id="title">SHOPPER</h1>
<div class="hint">type anything to add it to the shopping list</div>
</div>
</header>
<ul id="the-list">
</ul>
<form id="editor" class="pure-form pure-form-aligned" autocomplete="off">
<fieldset class="fields">
<div class="pure-control-group">
<label for="input-name">Name</label>
<input type="text" name="name" id="input-name" >
</div>
<div class="pure-control-group">
<label for="input-quantity">Quantity</label>
<input type="number" name="quantity" id="input-quantity" step="1" min="1" value="1">
</div>
<div class="pure-control-group">
<label for="input-price">Price</label>
<input type="number" name="price" id="input-price" step="0.01" min="0.00" value="0.00">
</div>
</fieldset>
<fieldset class="buttons">
<button class="adder pure-button">ADD</button>
<button class="finisher pure-button">GOT IT</button>
<button class="deleter pure-button">DELETE</button>
</fieldset>
</form>
</div>
</body>
</html>