-
Notifications
You must be signed in to change notification settings - Fork 1
/
address-book.html
124 lines (119 loc) · 4.79 KB
/
address-book.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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!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, shrink-to-fit=no">
<title>Address</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/address.css">
<link rel="shortcut icon" href="images/icon.png" type="image/x-icon">
</head>
<body>
<header class="flex justify-end items-center">
<a href="home.html" class="logo">
<img src="images/logo.png">
</a>
<nav>
<ul class="nav_links">
<li><a href="search-after.html">Search</a></li>
<li><a href="my-account.html">My Account</a></li>
<li><a href="cart.html">Cart</a></li>
</ul>
</nav>
</header>
<div class="navigation flex justify-between">
<ul class="nav_links">
<li><a href="all-categories.html">All</a></li>
<li><a href="best-sellers.html">Best Sellers</a></li>
<li><a href="fruits.html">Fruits and vegetables</a></li>
<li><a href="beverages.html">Beverages</a></li>
<li><a href="grains.html">Cereals</a></li>
<li><a href="baby.html">Baby Products</a></li>
</ul>
<a href="#">Log Out</a>
</div>
<main>
<div class="flex">
<div class="left">
<div class="section">
<h1>My Account</h1>
<ul>
<li><a href="my-account.html">Edit Account</a></li>
<li><a href="change-password.html">Change password</a></li>
<li><a href="address-book.html">Address</a></li>
</ul>
</div>
<div class="section">
<h1>My Orders</h1>
<ul>
<li><a href="orders.html">Order History</a></li>
<li><a href="order-return.html">Returns</a></li>
<li><a href="wishlist.html">Wishlist</a></li>
<li><a href="coupons.html">My Coupons</a></li>
</ul>
</div>
</div>
<div class="right">
<h1>Address</h1>
<h3 id="add">You have not added any address yet: <a href="add-address.html"> Add Now</a></h3>
</div>
</div>
</main>
<footer>
<div class="footer-row flex justify-between">
<div class="footer-left flex">
<div class="footer-column">
<a href="home.html" class="logo">
<img src="images/logo.png" width="135px">
</a>
<h3>Copyright © 2021</h3>
</div>
<div class="footer-column">
<h4>about us</h4>
<ul>
<li><a href="about-us.html">About us</a></li>
<li><a href="contact-us.html">Contact</a></li>
<li><a href="help.html">Help</a></li>
<li><a href="https://forms.gle/VXHw4UVa6nnENjAk6">Feedback</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Connect with us</h4>
<ul>
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="https://github.com/shreyaschavhan/online-grocery-store">Github</a></li>
</ul>
</div>
<div class="footer-column">
<h4>privacy</h4>
<ul>
<li><a href="terms.html">terms of use</a></li>
<li><a href="privacy.html">privacy policy</a></li>
<li><a href="return.html">return policy</a></li>
<li><a href="security.html">security</a></li>
<li><a href="sitemap.xml">sitemap</a></li>
</ul>
</div>
</div>
<div class="footer-right flex">
<div class="vl"></div>
<div class="footer-column-1">
<h4>find us</h4>
<p>P-14, Phase 1, Hinjewadi Rajiv Gandhi <br>Infotech Park,
Hinjawadi, Pune, <br>
Maharashtra 411057 <br>
+91 000000000 <br>
rutujarjangle@gmail.com <br>
chavhanshreyas@gmail.com <br>
sauhard.saini@gmail.com <br>
</p>
</div>
</div>
</div>
</footer>
<script src="js/slider.js"></script>
</body>
</html>