-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (124 loc) · 4.22 KB
/
index.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!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" />
<title>Staple</title>
<link rel="stylesheet" href="style.css" />
<style>
@media (max-width: 480px) {
}
</style>
</head>
<body>
<header>
<div class="header">
<img src="images/main-icon.svg" alt="main-icon" class="main-icon" />
<img src="images/main-text.svg" alt="main-text" class="main-text" />
<nav class="index-nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="portal.html">Farmer's Portal</a></li>
<li><a href="search.html">Search</a></li>
<li><a href="med-rice.html">Medicinal Rice Varieties</a></li>
<li><a href="#contact-form">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<section class="index-sec-1">
<p>
In a joint research project conducted by IGKV & BARC, it was found that
three traditional rice varieties cultivated largely by tribal farmers of
<span style="color: #babf24">Chhattisgarh</span> have been found to
possess qualities that can cure lung and breast cancers.
</p>
<p>
Indigenous Medicinal Varieties of Rice & Leafy Vegetables are
<span style="color: #ff0000">still unkown</span> to wide majority of
people, not only in India, but in Chhattisgarh itself.
</p>
</section>
<section class="index-sec-2">
<div>
<h2>Rice</h2>
<h3>Benefits</h3>
<h2 style="text-align: right">We know</h2>
<p>
A 100g serving of white rice (boiled) provides:
<ul style="padding-top: 5%">
<li>131 kcal/560KJ</li>
<li>2.8g protein</li>
<li>0.4g fat</li>
<li>31.1g carbohydrate</li>
<li>0.5g fibre</li>
</ul>
</p>
</div>
<div>
<img src="images/benefits.svg" alt="benefits" />
<img src="images/rice-bowl.png" alt="rice-bowl" />
</div>
</section>
<section class="index-sec-3">
<div>
<p>
There are many benefits of rice but recent studies have shown the
medicinal properties of rice too.
</p>
<p>
With the help of studies conducted by researchers all over India,
we’ve tried to uncover some of the medicinal rice varieties of C.G.
</p>
<a href="med-rice.html" class="index-sec-3-btn"
><button>View</button></a
>
</div>
<!-- <div>
<p>
molestiae non neque illum non perspiciatis dolorem est optio molestias
a delectus quaerat? Qui reprehenderit fugiat et iste doloribus et
fugiat porro.
</p>
<p>molestiae non neque illum non perspiciatis dolorem est opt</p>
<a href="#" class="index-sec-3-btn" style="margin-left: 10%"
><button>Learn more</button></a
>
</div> -->
</section>
<section class="index-sec-4">
<div>
<h6>Farmer's Portal</h6>
<a href="portal.html" class="index-sec-4-btn"><button>Enter</button></a>
</div>
</section>
<section class="index-sec-5">
<div class="vl"></div>
<h5>Contact</h5>
<div class="contact-form" id="contact-form">
<form action="">
<input type="text" placeholder="name" />
<input type="email" placeholder="email" />
<input type="text" placeholder="subject" />
<input type="text" placeholder="message" />
<button type="submit">Send</button>
</form>
<article>
<p>
If you'd like to know more about the rice varieties and the authenticity of the information on this page.
</p>
<p>Feel free to contact us on below email or fill the form so that we can contact you!</p>
<strong>staple@gmail.com</strong>
</article>
</div>
<div class="vl"></div>
</section>
<section class="footer">
<img src="images/main-icon.svg" alt="main-icon" />
<div>
<a href="#top">back to top.</a>
</div>
</section>
</body>
</html>