-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 887 Bytes
/
Copy pathindex.html
File metadata and controls
23 lines (23 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Javascript + DOM</title>
<link rel="stylesheet" type = "text/css" href="styles.css">
</head>
<body>
<h1>Shopping List</h1>
<p id="first">Get it done today</p>
<input id = "userinput" type="text" placeholder="enter items">
<button id= "enter">Enter!</button>
<ul>
<li class="bold" random="23">Notebook<button class = "lo">Remove</button></button></li>
<li class="bold">Jello<button class = "lo">Remove</button></li>
<li class="bold">Spinach<button class = "lo">Remove</button></li>
<li class="bold">Rice<button class = "lo">Remove</button></li>
<li class="bold">Birthday Cake<button class = "lo">Remove</button></li>
<li class="bold">Candles<button class = "lo">Remove</button></li>
<li class="bold">Cake<button class = "lo">Remove</button></li>
</ul>
<script type="text/javascript" src="scripts.js"></script>
</body>
</html>