-
Notifications
You must be signed in to change notification settings - Fork 4
/
plot-menu.html
63 lines (60 loc) · 2.31 KB
/
plot-menu.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
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<title>Farms Available</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css" />
<link rel="icon" href="images/icon.png" />
</head>
<body>
<div id="app">
<header>
<div style="display:flex;">
<h1 style="margin-left:20px;">
Cloud Farming
</h1>
</div>
<ul class="navigation-list">
<li> <a href="index.html">Home</a> </li>
<li> <a href="login-customer.html">Login as customer</a> </li>
<li> <a href="login-seller.html">Login as seller</a> </li>
</ul>
</div>
</header>
</div>
<div class="farm-cards">
<h1 style="color: black; font-family:Lobster,cursive; font-size:40px; text-align:center;">Farms available: </h1>
<div class="flex">
<div class="card">
<img src="images/plot1.jpg" alt="" width=240px height=200px style="margin-top:8px;"/>
<h3>Agra</h3>
<p>Uttar Pradesh<br></p>
<p>Rent: 1200/month</p>
<a href="plot1.html"><button class="know-more">Know More</button></a>
</div>
<div class="card">
<img src="images/plot2.jpg" alt="" width=240px height=200px style="margin-top:8px;"/>
<h3>Tirupur</h3>
<p>Tamil Nadu</p>
<p>Rent: 1200/month</p>
<a href="plot1.html"><button class="know-more">Know More</button></a>
</div>
<div class="card">
<img src="images/plot3.jpg" alt="" width=240px height=200px style="margin-top:8px;"/>
<h3>Kadur</h3>
<p>Karnataka</p>
<p>Rent: 1200/month</p>
<a href="plot1.html"><button class="know-more">Know More</button></a>
</div>
<div class="card">
<img src="images/plot4.jpg" alt="" width=240px height=200px style="margin-top:8px;"/>
<h3>Mathura</h3>
<p>Uttar Pradesh</p>
<p>Rent: 1200/month</p>
<a href="plot1.html"><button class="know-more">Know More</button></a>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>