-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarketplace.html
42 lines (33 loc) · 1.1 KB
/
marketplace.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
<html lang="en">
<head>
<title>Marketplace</title>
<link rel="stylesheet" href="css/style.css" type="text/css" />
<script src="js/main.js"></script>
</head>
<header>
<div class="topHeader">
<h1 class="mainHeading">Pups4Life</h1>
<div class="buttonContainer">
<a href="login.php"><button class="topHeaderButtons">Login</button></a>
<a href="register.php"><button class="topHeaderButtons">Register</button></a>
</div>
</div>
<div class="bottomHeader">
<a href="index.html"><button class="bottomHeaderButtons">Home</button></a>
<a href="marketplace.html"><button class="bottomHeaderButtons">Marketplace</button></a>
<a href="profile.html"><button class="bottomHeaderButtons">Profile</button></a>
</div>
</header>
<body>
<div id="sellProduct">
<input type="text" >
<a><button>100 Funds</button></a>
<a><button>Sell Products</button></a>
</div>
<div class="contentContainer">
<div class="product">
<h2>Product Name</h2>
</div>
</div>
</body>
</html>