-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (95 loc) · 2.93 KB
/
Copy pathindex.html
File metadata and controls
98 lines (95 loc) · 2.93 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rainfall Prediction</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
.container {
max-width: 800px;
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
margin: 20px;
}
h1 {
color: #2c3e50;
text-align: center;
margin-bottom: 30px;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin: 30px 0;
}
.feature {
background: #f8f9fa;
padding: 20px;
border-radius: 8px;
text-align: center;
}
.feature h3 {
color: #3498db;
margin-top: 0;
}
.cta-button {
display: inline-block;
background: #3498db;
color: white;
padding: 15px 30px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
margin-top: 20px;
transition: background 0.3s ease;
}
.cta-button:hover {
background: #2980b9;
}
.footer {
text-align: center;
margin-top: 40px;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>Rainfall Prediction</h1>
<p>Welcome to our advanced rainfall prediction system! This machine learning-powered application helps you predict rainfall with high accuracy using various weather parameters.</p>
<div class="features">
<div class="feature">
<h3>Real-time Predictions</h3>
<p>Get instant rainfall predictions based on current weather conditions</p>
</div>
<div class="feature">
<h3>Location-based</h3>
<p>Predict rainfall for multiple locations with custom weather data</p>
</div>
<div class="feature">
<h3>Historical Data</h3>
<p>Access and analyze historical prediction data</p>
</div>
</div>
<div style="text-align: center;">
<a href="https://rainfall-prediction.onrender.com" class="cta-button">Launch Application</a>
</div>
</div>
<div class="footer">
<p>Built with ❤️ using Python, Flask, and Machine Learning</p>
</div>
</body>
</html>