-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (51 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
53
54
55
56
<!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>Grocery app</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/img/favicon_io/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/img/favicon_io/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/img/favicon_io/favicon-16x16.png"
/>
<link rel="manifest" href="/img/favicon_io/site.webmanifest" />
<link rel="stylesheet" href="/css/style.css" />
</head>
<body>
<section class="fade-in tutorial">
<h2>Quick tutorial</h2>
<ol class="steps">
<li>Enter the name of the item in the input.</li>
<li>Use the "Add to cart" button to add an item to start creating your list.</li>
<li>To remove an item from the list, tap on the item and the item will be removed from the list.</li>
<li>Any item that is added will be saved even after the browser window is refreshed. </li>
</ol>
<button class="proceed-btn">Continue</button>
</section>
<main class=""fade-in-last>
<section id="shopping-cart">
<img src="/img/cart-icon.png" alt=" a cart icon" />
<h1>Smart cart</h1>
<input type="text" name="" id="input-field" placeholder="Perfume" />
<span></span>
<button js-button id="add-button">Add to cart</button>
<ul id="shopping-list"></ul>
</section>
</main>
<script src="index.js" type="module"></script>
</body>
</html>