-
Notifications
You must be signed in to change notification settings - Fork 0
/
marketplace.html
54 lines (49 loc) · 1.44 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
43
44
45
46
47
48
49
50
51
52
53
54
<!--Marketplace html-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tufts Text Exchange - Marketplace</title>
<link rel="stylesheet" type="text/css" href="css/toolbar_style.css" />
<link rel="stylesheet" type="text/css" href="css/marketplace_style.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="js/marketplace.js"></script>
</head>
<body>
<!-- Toolbar -->
<div class="menu">
<span class="left">
<a href="index.html">Home</a>
<a class="toolapplyBorderLeft" href="marketplace.html">Buy</a>
<a class="toolapplyBorderLeft" href="sellerhome.html">Sell</a>
</span>
<span class="right">
<a href="about.html" class="button">About</a>
<a class="toolapplyBorderLeft" href="contact.html" class="button">Contact</a>
</span>
</div>
<!--banner-->
<div class="banner">
<div class="banner-background">
<div class="banner-words">
<div id="banner-title-buy"> Marketplace </div>
<div id="banner-subscript"> Books for a fraction of the price. </div>
</div>
</div>
</div>
<!--searchbar-->
<div class="searchbar">
<form action ="http://www.tuftstex.com"/>
<div class = "search_button">
<input id = "bar" type = "text" name = "search" placeholder = "Enter keyword here...">
<input type = "submit">
</div>
</form>
</div>
<!-- bookinfo -->
<div class="marketplace">
<div class="bookinfo">
</div>
</div>
</body>
</html>