-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
55 lines (31 loc) · 853 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ShopThis</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<main>
<section id="screen_section">
<img src="images/logo.png">
<section id="list_section">
<ul>
<!-- <li><span class="list_item">carrots</span><div class="x_box"></div>
</li>
<li>
<span class="list_item_marked">carrots</span><div class="x_box"></div>
</li> -->
</ul>
</section>
<section id="input_section">
<input placeholder="Enter items here"></input>
<button id="submit">Add</button>
</section>
</section>
</main>
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>