-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-us.html
73 lines (72 loc) · 2.81 KB
/
about-us.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<link rel="stylesheet" href="./global.css" />
<link rel="stylesheet" href="./about-us.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;600;700&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Dangrek:wght@400&display=swap"
/>
</head>
<body>
<div class="about-us2">
<button class="left-arrow" id="leftArrow"></button>
<b class="about-us3">About us</b>
<div class="text-wrapper">
<div class="text4"></div>
</div>
<div class="the-khetmart-website-container">
<p class="the-khetmart-website">
The Khetmart website, from farm to table means a direct relationship
between the farmer and the consumer or corporation.
</p>
<p class="the-khetmart-website">
This website provides farmers with an online presence, making it
easier for potential customers, suppliers, and partners to find them.
This visibility can lead to increased inquiries.
</p>
<p class="the-khetmart-website">
Farmers can use this website to showcase their products, services, and
farming practices. This acts as a powerful marketing tool, helping
attract customers and increase sales.
</p>
<p class="the-khetmart-website">
We also provide quality checked products from trusted and assured
farmers.
</p>
<p class="the-khetmart-website">
With an e-commerce feature on the website, farmers can sell their
produce directly to consumers, cutting out middlemen and potentially
earning higher profits. Restaurants and other hotels can approach this
website to make bulk orders. We only provide bulk orders.
</p>
<p class="the-khetmart-website">
This website allows farmers to reach customers beyond their local
area. This opens up new market opportunities and customer bases.
</p>
<p class="the-khetmart-website">
This website provide different government schemes for farmers and
information about modern technologies for farmers to upskill their
agriculture methods.
</p>
<p class="the-khetmart-website"> </p>
<p class="the-khetmart-website"> </p>
<p class="the-khetmart-website"> </p>
</div>
</div>
<script>
var leftArrow = document.getElementById("leftArrow");
if (leftArrow) {
leftArrow.addEventListener("click", function (e) {
window.location.href = "/";
});
}
</script>
</body>
</html>