generated from cs130-w22/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostdes.html
51 lines (48 loc) · 1.37 KB
/
postdes.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Free and for Sale - Post Description</title>
<link rel="stylesheet" href="./css/postdes.css">
<script src="./bundle/bundlePostDes.js"></script>
</head>
<body>
<div class="navbar">
<div class="container">
<a class="logo" href="#">UCLA<span>FreeAndForSale</span></a>
<nav>
<ul class="primary-nav">
<li class="current"><a href="myprofile.html">My Profile</a></li>
<li><a href="wishlist.html">My Wishlist</a></li>
<li><a href="map.html">Map</a></li>
<li><a href="catalog.html">Catalog</a></li>
<li><a id="logout" href="#">Log Out</a></li>
</ul>
</nav>
</div>
</div>
<div class="row">
<div class="leftcolumn">
<div class="card">
<h2 id ="product_name"></h2>
<h5 id = "cost"></h5>
<img id = "image" class="center">
</div>
<div class="card">
<p id ="description"></p>
</div>
</div>
<div class="rightcolumn">
<div class="card">
<h3>Seller Information</h3>
<p id = "name"></p>
<p id = "location"></p>
<p id = "email"></p>
<p id = "phone"></p>
</div>
<button id= "buy">BUY!</button>
<button id= "addToWishlist">Add to Wishlist</button>
</div>
</div>
</body>
</html>