-
Notifications
You must be signed in to change notification settings - Fork 0
/
seller_page.html
58 lines (50 loc) · 1.85 KB
/
seller_page.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
<!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>Seller Page</title>
<!-- <link rel="stylesheet" href="style.css"> -->
<link rel="stylesheet" href="header.css">
<link rel="stylesheet" href="seller-page-style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400&display=swap">
</head>
<body>
<header class ="header">
<a href="#"><img id="logo" src="logo-small.png" alt=""></a>
<ul id="navlist">
<li><a href="#learnmore">Learn More</a></li>
<li><a href="#about">About</a></li>
<li><a href="mailto:[email protected]">Contact</a></li>
</ul>
<span id="iconwrapper">
<a href="#profile" class="iconholder">
<img class="icon" src="user-48.png" alt="">
<span>Profile</span>
</a>
<!-- <a href="./shopping_cart.html" class="iconholder">
<img class="icon" src="cart-5-48.png" alt="">
<span>Cart</span>
</a> -->
</span>
</header>
<div id="background">
<div id="div1">
<div id="div2">
<p id="p1">My product</p>
<p id="p2">Description</p>
</div>
<div id="div3">
<a href="./product_form.html" class="reference">
<div id="add-button">
<p id="button-text">Add product</p>
</div>
</a>
</div>
</div>
</div>
</body>
</html>