-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_profile.html
263 lines (214 loc) · 10.7 KB
/
user_profile.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<!-- written by janak mallik -->
<!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">
<!-- css link -->
<link rel="stylesheet" href="style_JM.css">
<!-- bootstrap css links -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> -->
<!-- fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- bootstrap js links -->
<!-- dont cut these three lines mobile navbar would noyt work -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<title>Brand.</title>
<link rel="icon" type="image/x-icon" href="img/b1.png">
<style>
@media (min-width: 1500px) {
.h-custom {
height: 100vh !important;
}
}
</style>
</head>
<body>
<!-- navigation bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white py-3 fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html"><b>Brand.</b></a>
<!-- add logo here -->
<!-- size change navbar button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span><i id="bar" class="fa-solid fa-bars"></i></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto">
<li class="nav-item ">
<a class="nav-link" href="#">page1</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="#">page2</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="#">page3</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="#">page4</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="#">page5</a>
</li>
<li class="nav-item">
<!-- <i class="fa-light fa-search"></i> -->
<!-- <a class="nav-link" href="#">
<i class="fa-solid fa-search"></i>
</a> -->
<form id="P_Search" class="form-inline">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
</form>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<!-- <i class="fa-solid fa-shopping-bag"></i> -->
<i class="fa-solid fa-bag-shopping"></i>
<!-- <i class="fa-regular fa-bag-shopping"></i> -->
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Login/Register</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="mt-5 pt-5">
<p class="fs-1 text-center fw-bold text-capitalize">my profile info</p>
</section>
<!-- main page section -->
<!-- <section class="my-5 pt-5"> -->
<section>
<div class="">
<div class="row container mx-auto pt-5">
<div class=" col-lg-3 col-md-6 col-12 mb-5">
<h5 class="pb-3 text-uppercase">profile photo</h5>
<div>
<img src="https://scontent.fdac7-1.fna.fbcdn.net/v/t39.30808-1/283511184_1216834449063290_4336638965461062060_n.jpg?stp=dst-jpg_p160x160&_nc_cat=110&ccb=1-7&_nc_sid=7206a8&_nc_eui2=AeEMLlY9FmSaPkn8VXrML9QI8a4JpBPiToLxrgmkE-JOguDrd9SCRJpAAqSXfT8_OkVYtnPC_m7CPmiAzcn3_ogU&_nc_ohc=t02DfiyhguIAX-jTbxT&_nc_ht=scontent.fdac7-1.fna&oh=00_AT8UArZ2qsAEG0bOhMDy2Pu6_3Qpm2vydUu7qOob2viDzQ&oe=6302C67F">
</div>
</div>
<div class=" col-lg-3 col-md-6 col-12 mb-5">
<h5 class="pb-3 text-uppercase">info</h5>
<div>
<h6 class="text-uppercase">
<i class="fa-solid fa-user"></i>
name</h6>
<p class="ml-3">janak mallik</p>
</div>
<div>
<h6 class="text-uppercase">
<i class="fa-solid fa-phone"></i>
phone</h6>
<p class="ml-3">880-179-3711-207</p>
</div>
<div>
<h6 class="text-uppercase">
<i class="fa-solid fa-envelope"></i>
e-mail</h6>
<p class="ml-3">janaktoy@gmail.com</p>
</div>
</div>
<div class=" col-lg-3 col-md-6 col-12 mb-5 text-uppercase">
<h5 class="pb-3">addresses</h5>
<div>
<h6 class="text-uppercase">
<i class="fa-solid fa-house"></i>
home</h6>
<p class="ml-3">123 street name, dhaka, bangladesh</p>
</div>
<div>
<h6 class="text-uppercase">
<i class="fa-solid fa-building"></i>
office</h6>
<p class="ml-3">123 street name, dhaka, bangladesh</p>
</div>
</div>
<!-- <div class="footer-one col-lg-3 col-md-6 col-12 mb-2 text-uppercase">
<p class="pb-3"><a href="#">edit info</a></p>
</div> -->
<div class="container-fluid text-end text-uppercase">
<p><a href="edit_info.html">edit info</a></p>
</div>
<!-- copyright -->
</div>
</div>
</section>
<!-- main oage section -->
<!-- footer section -->
<footer class="mt-5 py-5">
<div class="row container mx-auto pt-5">
<div class="footer-one col-lg-3 col-md-6 col-12 mb-5">
<h2>Brand.</h2>
<p>
<b>Brand.</b> is one of the unique online shopping sites in
Bangladesh where fashion is accessible to all. You can get your
hands on the <i>trendiest style</i> every season and also avail the best
of ethnic fashion during all <i>bengali festive occasions</i> in unbelievably
affordable range.
</p>
</div>
<div class="footer-one col-lg-3 col-md-6 col-12 mb-5 text-uppercase">
<h5 class="pb-3">Featured</h5>
<ul class=" list-unstyled">
<li><a href="#">books</a></li>
<li><a href="#">shirts</a></li>
<li><a href="#">formal pants</a></li>
<li><a href="#">jeans</a></li>
<li><a href="#">watches</a></li>
<li><a href="#">accessories</a></li>
<li><a href="#">shoes</a></li>
</ul>
</div>
<div class="footer-one col-lg-3 col-md-6 col-12 mb-5 text-uppercase">
<h5 class="pb-3">Contact us</h5>
<div>
<h6 class="text-uppercase">
<i class="fa-solid fa-location-dot"></i>
Address</h6>
<p>123 street name, dhaka, bangladesh</p>
</div>
<div>
<h6 class="text-uppercase">
<i class="fa-solid fa-phone"></i>
phone</h6>
<p>880-179-3711-207 (telephone)</p>
</div>
<div>
<h6 class="text-uppercase">
<i class="fa-solid fa-envelope"></i>
e-mail</h6>
<p>info@brand.bd.com</p>
</div>
</div>
<div class="footer-one col-lg-3 col-md-6 col-12 mb-2 text-uppercase">
<h5 class="pb-3">FOLLOW US</h5>
<ul class="text-uppercase list-unstyled">
<li><a href="#">
<i class="fa-brands fa-instagram"></i>
instagram</a></li>
<li><a href="#">
<i class="fa-brands fa-twitter"></i>
twitter</a></li>
<li><a href="#">
<i class="fa-brands fa-youtube"></i>
youtube</a></li>
<li><a href="#">
<i class="fa-brands fa-square-facebook"></i>
facebook</a></li>
</ul>
</div>
<div class="container-fluid text-right">
<p><a href="#">Privacy Policy</a> | <a href="#">Terms and Conditions</a></p>
</div>
<!-- copyright -->
<div>
<p>© 2022 <b>Brand.</b> Inc. All Rights Reserved</p>
</div>
</div>
</footer>
</body>
</html>