-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>Frontend Mentor | Product list with cart</title>
</head>
<body>
<main class="principal-container">
<section class="product-section">
<h1>Desserts</h1>
<div id="products"></div>
</section>
<section class="order-section">
<h2 class="order-amount">Your Cart </h2>
<div id="orders">
<p class="default-text">Your added items will apper here</p>
</div>
</section>
</main>
<section class="order-confirmed-section">
<main class="order-confirmed-container">
<img src="./assets/images/icon-order-confirmed.svg" class="icon-check" alt="Icon Order Confirmed">
<header class="message-order">
<h1>Order Confirmed</h1>
<p>We hope you enjoy your food</p>
</header>
<footer id="products-confirmed">
</footer>
<button type="button" id="new-order">Start New Order</button>
</main>
</section>
</body>
</html>