-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (43 loc) · 1.68 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
43
44
45
46
47
48
49
50
51
52
<!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">
<link rel="apple-touch-icon" sizes="180x180" href="Asserts/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="Asserts/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="Asserts/favicon_io/favicon-16x16.png">
<link rel="manifest" href="Asserts/favicon_io/site.webmanifest">
<!-- Style Sheet Added -->
<link rel="stylesheet" href="style.css">
<title>Add to Cart</title>
</head>
<body>
<div class="main-container">
<div id="container1">
<h1 id="heading1">
Find Your Data
</h1>
<input type="text" id="inputDatabase" placeholder="Search/Insert your Name" autocomplete="false">
<button id="addButtonDatabase">Make Your List</button>
</div>
<!-- Panel TO Add COntent -->
<div class="container2">
<h1 class="heading1">
Make Out Your List
</h1>
<img src="./Asserts/icon.jpg" alt="Icon">
<input type="text" id="input" placeholder="What to Add 🤔?" autocomplete="false">
<button id="addButton">Add Me!!</button>
</div>
<div class="container2">
<h3 id="heading2">Your Items</h3>
<ul id="shopping-list">
</ul>
</div>
</div>
<!-- Script Added -->
<script src="script.js" type="Module"></script>
<script src="./Helper Module/function.js" type="Module"></script>
</body>
</html>