-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
88 lines (84 loc) · 2.77 KB
/
cart.html
File metadata and controls
88 lines (84 loc) · 2.77 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://use.fontawesome.com/d2f73515d4.js"></script>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<link rel="stylesheet" href="./style/main.css" />
<link rel="stylesheet" href="./style/sean_pages.css" />
<link
href="https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&family=Major+Mono+Display&family=Space+Grotesk:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap"
rel="stylesheet"
/>
<title>Startech</title>
</head>
<body>
<header>
<nav id="navbar" class="sticky">
<img id="logo" src="./assets/LogoMark.png" /><img />
<a class="text" href="./index.html" id="index">Home</a>
<a class="text" href="./laptop.html" id="laptop">Laptops</a>
<a class="text" href="./phone.html" id="phone">Phones</a>
<a class="text" href="./location.html" id="location">Locations</a>
<a class="cart" href="./cart.html"
><img id="cart" src="./assets/ShoppingCart.png" alt=""
/></a>
</nav>
</header>
<section class="cart_section">
<h2>My Cart</h2>
<div class="cartpage">
<div class="cob fst">
<div class="flex cobwrap">
<img src="./assets/customlaptop.png"" alt="" width="150px">
<div>
<h3>Enterprise 5000</h3>
<p>Price: $1000</p>
</div>
</div>
</div>
<div class="cob snd">
<div class="flex cobwrap">
<img src="./assets/phone2.png"" alt="" width="150px">
<div>
<h3>YodaPhone</h3>
<p>Price: $900</p>
</div>
</div>
</div>
<div class="cob tt">
<div class="flex cobwrap">
<h3>subtotal</h3>
<p>$1900</p>
</div>
<div class="flex cobwrap">
<h3>shipping</h3>
<p>$9.99</p>
</div>
<div class="flex cobwrap">
<h3>Total</h3>
<p>$1900.99</p>
</div>
<button class="addcart">Proceed to Payment</button>
</div>
</div>
</section>
<footer>
<div class="flex foot_wrapper">
<p>Disclaimer: Not a real website. Project demo only</p>
<div class="flex">
<i class="fab fa-facebook"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram-square"></i>
</div>
</div>
</footer>
</body>
<script src="./script.js"></script>
</html>