-
Notifications
You must be signed in to change notification settings - Fork 0
/
easy_to_use.html
41 lines (37 loc) · 1.6 KB
/
easy_to_use.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Easy to Use - Agriculture Price Prediction</title>
<link rel="stylesheet" href="easy_styles.css">
</head>
<body>
<header>
<h1>How to Use Our Website</h1>
</header>
<section class="steps-container">
<div class="step-box">
<h2>Step 1: Select a Commodity</h2>
<p>Choose from a variety of agricultural commodities like wheat, rice, potatoes, and more. This allows you to get specific predictions tailored to the crop you're interested in.</p>
</div>
<div class="step-box">
<h2>Step 2: Enter Your Details</h2>
<p>Fill out simple forms with your data, such as the month and year you wish to inquire about. Providing accurate information helps in generating better predictions.</p>
</div>
<div class="step-box">
<h2>Step 3: Get Predictions</h2>
<p>Click the prediction button to instantly receive accurate pricing predictions for your selected commodities. This feature helps you plan better.</p>
</div>
<div class="step-box">
<h2>Step 4: Manage Your Stock</h2>
<p>Utilize the buffer stock management feature to make informed decisions and optimize your inventory based on the predictions provided.</p>
</div>
</section>
<!-- Add navigation back to the main page -->
<footer>
<button type="button" class="btn" onclick="window.location.href='predictor.html'">Go Back to Home</button>
</footer>
<script src="script.js"></script>
</body>
</html>