-
Notifications
You must be signed in to change notification settings - Fork 2
/
user.html
98 lines (87 loc) · 2.56 KB
/
user.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop your way</title>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Dancing+Script:wght@700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./Styles/index.css">
<link rel="stylesheet" href="./Styles/user.css">
</head>
<body>
<nav>
<div class="logo">
<h4>Party Shop</h4>
</div>
<ul class="nav-links">
<li>
<a class="links" href="./index.html">Home</a>
</li>
<li>
<a class="links" href="./shopping.html">Shop Now</a>
</li>
<li>
<a class="links" href="#">Services</a>
</li>
<li>
<a class="links" href="./about.html">About</a>
</li>
</ul>
<div class="user">
<a href="user.html">
<img class="userIcon" src="./Icons/account.png" alt="account">
</a>
</div>
<div class="cart">
<a href="./cart.html">
<img class="cartIcon" src="./Icons/shopping-cart.png" alt="cart">
</a>
</div>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<!-- main content -->
<div class="user-main">
<h5>Wait for this feature...</h5>
</div>
<!-- footer -->
<footer>
<div class="footerdiv">
<ul class="footer-list">
<li>
<a href="#">privacy & policy</a>
</li>
<li>
<a href="#">Security</a>
</li>
</ul>
<ul class="footer-list">
<li>
<a href="#">Payment</a>
</li>
<li>
<a href="#">careers</a>
</li>
</ul>
<ul class="footer-list">
<li>
<a href="#">Help</a>
</li>
<li>
<a href="#">Contact Us</a>
</li>
</ul>
</div>
<div class="copyright">
<p>copyright © 2021 registered</p>
<p>Images are from <a href="#">Internet</a> </p>
</div>
</footer>
<script src="./Javascript/index.js"></script>
</body>
</html>