You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.html
+23-7Lines changed: 23 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -21,11 +21,16 @@
21
21
100% {background-position:0%50%;}
22
22
}
23
23
24
-
h1,h3,label {
24
+
h1,label {
25
25
text-align: center;
26
26
color:#f1f1f1;
27
27
}
28
28
29
+
h3 {
30
+
text-align: left;
31
+
color:#f1f1f1;
32
+
}
33
+
29
34
h2 {
30
35
font-weight: normal;
31
36
font-size:16px;
@@ -169,21 +174,29 @@
169
174
margin-top:-5px;
170
175
margin-bottom:10px;
171
176
}
177
+
.fade-in {
178
+
opacity:0;
179
+
transform:translateY(20px);
180
+
animation: fadeInUp 0.6s ease-out forwards;
181
+
}
182
+
183
+
@keyframes fadeInUp {
184
+
to {
185
+
opacity:1;
186
+
transform:translateY(0);
187
+
}
188
+
}
172
189
</style>
173
190
</head>
174
191
<body>
175
192
<h1>AI-DataScience-Lab</h1>
176
193
<h2>Built with Pandas, scikit-learn, and OpenAI GPT-3.5 API</h2>
177
194
<h2>(<ahref="https://github.com/Hariprashad-Ravikumar/AI-DataScience-Lab" target="_blank">View source code on Hari's GitHub</a>)</h2>
178
195
179
-
<!-- Description -->
180
-
<divclass="description">
181
-
Upload your dataset to receive intelligent insights powered by AI. Our tool cleans your data, builds a predictive model, and explains the trends using OpenAI. Visualizations and downloadable reports included.
182
-
</div>
183
196
184
197
<!-- Upload -->
185
198
<divclass="section">
186
-
<h3>Upload your data file to get forecast using AI</h3>
199
+
<h3>Upload your dataset to receive intelligent insights powered by AI. Our tool cleans your data, builds a predictive model, and explains the trends using OpenAI. Visualizations and downloadable reports included.</h3>
0 commit comments