forked from SetarehSh/HacktheBreak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
farmer.html
103 lines (85 loc) · 4.17 KB
/
farmer.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.min.js"></script>
<link rel = "short cut icon" type = "image/png" href="./images/Logo2.png">
<link rel="stylesheet" href="./styles/farmer.css">
<link rel="stylesheet" href="./styles/header.css">
<link rel="stylesheet" href="./styles/footer.css">
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Tinos">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Changa">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Pridi">
<title>Farmer's Account</title>
</head>
<body>
<nav id="navigation">
<a id="home" href="homepage.html"><img id="logo" src="./images/Logo.png" alt="Farmerce"></a>
<ul>
<li> <a href="homepage.html">Homepage</a> </li>
<li> <a href="farmer.html">Farmer's Account</a> </li>
<li><a href="customer.html">Buyer's Account</a> </li>
</ul>
</nav>
<div class="wrapper">
<main>
<h1> Happy Farm</button></h1>
<div id="farmerIntro">
<p>Hello, there! Thanks for visiting my Happy Farm. My name is Mathew and I am the farm owner.
Since 1940, Happy Farm has been a family-based farm, located in Langley,BC. In addition to
the long history, we are also one of the largest farms in BC. We produce potatoes,
carrots, onions, cabbages, beans, and many other vegatbales. We use the most envoirment-friendly
method and the most innovated techology to grow the best vegetables. Customers are always
very happy with our product and most of our customers are returned customers. We are looking
foward to establishing tading relationship with more new faces. Hope to see you soon!
</p>
<div id="farmContact">
Phone: (778)111-1111 ||
Email: happyfarm@text.com ||
Location: 1111 Happy Street, Langely, BC, Canada
<button id="order">Order Now</button>
</div>
</div>
<div id="ImageGallery">
<h3> Image Gallery </h3>
<img src="./images/farm-page/potatofarm.png" alt="potato farm">
<img src="./images/farm-page/potato2.png" alt="potato2">
<img src="./images/farm-page/carrotfarm.png" alt="carrot farm">
<img src="./images/farm-page/carrot.png" alt="carrot">
<img src="./images/farm-page/bean.png" alt="bean">
<img src="./images/farm-page/manyOnions.png" alt="manyOnions">
<!-- <img src = "./images/farm-page/cleanOnion.png" alt= "clearnOnions"> -->
<img src="./images/farm-page/singleCabbage.png" alt="singleCabbage">
<img src="./images/farm-page/manyCabbage.png" alt="manyCabbage">
<img src="./images/farm-page/vegs.png" alt="vegs">
</div>
</main>
</div>
<footer>
<div id="footer-container">
<ul>
<li><b>Contact Us</b></li>
<li>5555 Sky St, Vancovuer</li>
<li>BC, Canada</li>
<li>(604)666-7777</li>
<li>farmercebc@gmail.com</li>
<li id="copyright">© All rights reserved 2021</li>
</ul>
<ul>
<li>About Us </li>
<li>Farmers</li>
<li>Large Volume Buyers</li>
<li>FAQ</li>
<li>
<img class="mediaIcon" src="./images/social media icons/Instagram.png" alt="">
<img class="mediaIcon" src="./images/social media icons/Twitter.png" alt="">
<img class="mediaIcon" src="./images/social media icons/facebook.png" alt="Facebook Icon">
</li>
</ul>
</div>
</footer>
</body>
</html>