-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
29 lines (25 loc) · 1.13 KB
/
about.php
File metadata and controls
29 lines (25 loc) · 1.13 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
<title>OLFM-About</title>
<?php include('header.php'); ?>
<!--navbar menu starts-->
<div id="d1">
<ul id="menu">
<li ><a tabindex="3" href="home.php">Home</a></li>
<li ><a tabindex="4" href="produce.php">Produce</a></li>
<li class="selected"><a tabindex="5" href="about.php">About</a></li>
<li><a tabindex="6" href="contact.php">Contact</a></li>
</ul>
</div>
<!--navbar menu ends-->
<div id="info">
</br><p>Welcome to Online Farmer's Market!</p>
<h4>Why Online Farmer's Market?</h4>
<div id="info1">
Usually farmer's markets are open only on certain days of a week and that too for few hours. Because of this time-limit, many potential customers cannot buy fresh produce when they like. Using this website customers can order fresh produce online whenever they want. This may help grow the business of local farmers.
</div>
</br>
</div>
<?php include('footer.php'); ?>