forked from EslamRedaMohamed/E-Commerce-Web-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofilePage.html
43 lines (38 loc) · 1.65 KB
/
profilePage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Profile</title>
<link rel="stylesheet" href="profilePage.css">
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<section class="main">
<a href="index.html" class="logo"><i class='bx bx-shopping-bag' ></i>El souq</a>
<div class="profile">
<div class="profile-photo">
<div class="overlay"></div>
</div>
<article class="user-info">
<div class="personal-info">Personal info</div>
<div class="username">FM66</div>
<div class="fullname">Fady Mohsen</div>
<div class="geneder">Male</div>
<div class="contact-info">Contact info</div>
<div class="email">fady@gmail.com</div>
<div class="phone">01203885114</div>
</article>
<article class="purchases">
<div class="purchase">No purchases</div>
</article>
<button id="logout">Logout</button>
</div>
</section>
<script type="module" src="./profilePage.js"></script>
</body>
</html>