-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 1007 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Javascript + DOM</title>
<script src="https://use.fontawesome.com/33237e8e3c.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div class="container">
<h1>Shopping List</h1>
<input type="text" placeholder="enter items" id="userinput">
<!-- <button id="enter">Enter</button> -->
<ul>
<li><span><i class="fa fa-trash"></i></span> Notebook</li>
<li><span><i class="fa fa-trash"></i></span> Jello</li>
<li><span><i class="fa fa-trash"></i></span> Spinach</li>
<li><span><i class="fa fa-trash"></i></span> Rice</li>
<li><span><i class="fa fa-trash"></i></span> Birthday Cake</li>
<li><span><i class="fa fa-trash"></i></span> Candles</li>
</ul>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>