-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (26 loc) · 994 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
<!DOCTYPE html>
<html>
<head>
<title>Shopping List</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
</head>
<body>
<h1 class="animate__animated animate__bounce animate__infinite infinite">Shopping List</h1>
<p id ="first">Gett'r Done!</p>
<input id ="userinput" type="text" placeholder="Enter Items"> </input>
<button id="enter">Enter</button><hr>
<ul>
<!-- <li class ="bold red" random="23">
Notebook <button>Delete</button>
</li>
<li>
Pencil <button>Delete</button>
</li>
<li>
Folder <button>Delete</button>
</li> -->
</ul>
<script type="text/javascript" src="./script.js"></script>
</body>
</html>