-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
44 lines (42 loc) · 1.37 KB
/
profile.html
File metadata and controls
44 lines (42 loc) · 1.37 KB
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
<!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>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="profile.css">
</head>
<body>
<div class="bar">
<a href="index.html">Home</a>
<a href="store.html">Store</a>
<a href="shoppingcart.html">Shopping Cart</a>
<a href="signin.html">Sign In</a>
</div>
<h1>Profile</h1>
<div class="profile">
<div class="grid">
<div><b>Name</b></div>
<div><p>John Doe</p></div>
<div><b>Email</b></div>
<div><p>john@doe.com</p></div>
<div><b>Address</b></div>
<div><p>Some Street 99, 987654 New York</p></div>
<div><b>Tel. Number</b></div>
<div><p>+31 612345678</p></div>
<div><b>Account Type</b></div>
<div class="sell">
<p>Supplier</p>
<a href="add.html">
<button type="button"><b>Sell Items</b></button>
</a>
</div>
</div>
<div class="pictureholder">
<img src="images/profile_picture.jpg" alt="Profile Picture" class="profilepicture">
</div>
</div>
</body>
</html>