-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (30 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopping List: JavaScript + DOM</title>
<link rel="stylesheet" href="style.css">
</head>
<body style = "background: url('shopping.jpg');background-position: center;background-repeat: no-repeat;background-size: cover;height:100vh;width:100%;">
<h1>Shopping List</h1>
<p id="first">This is a Shopping List</p>
<p class="second">Enter the Items below. <br> Click on Cancel icon to remove items</p>
<div class="grid">
<div class="">
<input id="userinput" type="text" placeholder="Enter Items">
<button id="enter">Enter</button>
</div>
<div class="">
<ul>
</ul>
</div>
</div>
<footer>
Copyright ©Beable Devs 2021
</footer>
<script src="https://kit.fontawesome.com/1b7599756c.js" crossorigin="anonymous"></script>
<script src="script.js" type="text/javascript"></script>
</body>
</html>