forked from nikitaGupta2106/Online-Wine-Shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
64 lines (64 loc) · 2.43 KB
/
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
<!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">
<title>Profile</title>
<script src="https://kit.fontawesome.com/b7836bba55.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./CSS/header.css">
<link rel="stylesheet" href="./CSS/footer.css">
<link rel="stylesheet" href="./CSS/profile.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT Mono" />
</head>
<header id="header"></header>
<body id="body">
<div id="first">
<div id="second">
<h2>Hello, <span id="user">Annyonoms</span></h2>
<p id="points">You have 587 Points</p>
<p id="signout-btn">SIGN OUT</p>
</div>
<div id="content">
<div id="left">
<div id="profile">PROFILE</div>
<div id="myorders">MY ORDERS</div>
<div id="wishlist">WISH LIST</div>
<div>LOYALTY PROGRAM</div>
<div>REVIEWS</div>
</div>
<div id="right">
<div id="username">Alina</div>
<div id="details">
<div id="image">
<img src="https://i.pinimg.com/originals/99/90/e2/9990e20e11d30ed827f7aa522e8b8626.jpg" alt="profile">
</div>
<div>
<ul id="data">Demographics
<li>32</li>
<li>female</li>
<li>Office worker</li>
<li>married</li>
<li>kyiv</li>
</ul>
<ul id="data">Needs and Goals
<li>Stick to the budget that was determined by husband.</li>
<li>choose the quality wine that guest will like.</li>
<li>Availabilty of wine.</li>
</ul>
<ul id="data">Pains and Frustraiotn
<li>Won't like the wine.</li>
<li>Not receving the goods after payment</li>
<li>courire delay (if delivery)</li>
<li>recived the product of indaquete quality</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</body>
<footer id="footer"></footer>
<script type="module" src="./JS/profile.js" ></script>
<script type="module" src="./JS/importedHeader.js"></script>
</html>