-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (53 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap"
rel="stylesheet"
/>
<script src="./script.js" type="module"></script>
<link rel="stylesheet" href="./style.css" />
<title>Shopping Cart</title>
</head>
<body>
<div class="allProductsApp">
<header class="header">
<h2 class="header__title">Pet Shop</h2>
<img class= "logo" alt="logo" src ="./images/logo.jpg" />
<div class="header__icon">
<p class ="cart">Total item in cart: <span class="header__icon--total" >0</span></p>
</div>
</header>
<h1>Welcome to my pet shop!</h1>
<p>If you are looking for something to take care of your pet, this is the place to go. We ofter a wide selection of products that
will suit your need, for a reasonable price.
</p>
<main class="container">
<div class="products"></div>
</main>
</div>
<div class="shoppingCartApp">
<header class="header">
<h2 class="header__title">
<a class="btn" href="./index.html">Back to the main page</a>
</h2>
</header>
<main class="container">
<section class="shopping-cart">
<h2>Total price: <span class="totalPrice">0</span> AUD</h2>
<div class="cart-items">
<div class="item"></div>
</div>
</section>
</main>
</div>
</body>
</html>