-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (37 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>Parcel Sandbox</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="./src/styles.css" />
</head>
<body>
<div class="container layout">
<div class="center title">PickOne App</div>
<section>
<input
type="text"
name="item"
id="item-inp"
class="w-full"
placeholder="Input item here and hit “Enter” to add to list"
/>
<p class="info-text">
Comma separated values are also supported. Eg. Mango, Apple (will add
both as separate items)
</p>
</section>
<div id="items" class="items flex-grow"></div>
<div class="center">
<button id="pick-one-btn" class="btn-lg">Pick One</button>
</div>
</div>
<div class="popup-overlay">
<div class="popup-content">
<p id="result"></p>
<button class="close btn-sm">Close</button>
</div>
</div>
<script src="src/index.js"></script>
</body>
</html>