-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.23 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javascript+DOM</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 >Shopping List</h1>
<p id="first">Get it done today</p>
<p class="second first">No excuses</p>
<input id="user-input" type="text" placeholder="Enter items!!">
<button id="enter">Enter</button>
<ul>
<li>
<span class="name">Notebook</span>
<button class="delete">Delete</button>
</li>
<li>
<span class="name">Jello</span>
<span class="delete">Delete</span>
</li>
<li>
<span class="name">Spinach</span>
<span class="delete">Delete</span>
</li>
<li>
<span class="name">Rice</span>
<span class="delete">Delete</span>
</li>
<li>
<span class="name">Birthday Cake</span>
<span class="delete">Delete</span>
</li>
<li>
<span class="name">Candles</span>
<span class="delete">Delete</span>
</li>
</ul>
<script type="text/javascript" src="script2.js"></script>
</body>
</html>