-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
107 lines (96 loc) · 3.32 KB
/
cart.html
File metadata and controls
107 lines (96 loc) · 3.32 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>One-Click Pick | The Shopping Cart</title>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@1,300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital@1&display=swap" rel="stylesheet">
<link rel="stylesheet" href="ecomm.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
</head>
<body>
<div class="header">
<div class="container">
<div class="navbar">
<div class="logo">
<img src="img/logo.jpg" alt="logo">
</div>
<nav>
<ul>
<li> <a href="index.html">Home</a> </li>
<li> <a href="#product">Products</a> </li>
<li> <a href="#us">About Us</a> </li>
<li> <a href="#us">Contact</a> </li>
<li> <a href="#">Account</a> </li>
<li class="carts">
<a href="cart.html"><i class="fa fa-shopping-cart" aria-hidden="true"></i><span>0</span></a>
</li>
</ul>
</nav>
</div>
</div>
<div class="row">
<div class="col-2">
<h1>Give your workout <br> a new style!</h1>
<p>ADD STYLE TO TOUR DAILY LIFE</p>
<a href="#product" class="btn">Explore → </a>
</div>
<div class="col-21">
<img src="img/com.jpg" alt="git" class="header-img">
</div>
</div>
</div>
<div class="Products-container">
<div class="product-header">
<h5 class="product-title">PRODUCT</h5>
<h5 class="price">PRICE</h5>
<h5 class="quantity"> Quantity</h5>
<h5 class="total">TOTAl</h5>
</div>
<div class="products">
</div>
</div>
<div class="footer" id="us">
<div class="container">
<div class="row">
<div class="footer-col-1">
<h3>Download Our App</h3>
<p>Download App for Andriod and ios mobile phone</p>
<div class="app-logo">
<img src="img/playstore.jpg">
<img src="img/appstore.jpg">
</div>
</div>
<div class="footer-col-3">
<h3>Useful Links</h3>
<ul>
<li><a href="vvgyt.com">Coupons</a></li>
<li><a href="vvgyt.com">Blog Post</a></li>
<li><a href="vvgyt.com">Return Policy</a></li>
<li><a href="vvgyt.com">Join Affiliate</a></li>
</ul>
</div>
<div class="footer-col-4">
<h3>Follow Us</h3>
<ul>
<li> <a href="vvgyt.com">Facebook</a></li>
<li><a href="vvgyt.com">Instagram</a></li>
<li><a href="vvgyt.com">Twitter</a></li>
<li><a href="vvgyt.com">youtube</a></li>
</ul>
</div>
</div>
<hr>
<p class="copyright">copyright 2020-Easy tutorial</p>
</div>
</div>
<script src="script.js"></script>
<script
src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous"></script>
</body>
</html>