-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex1.html
More file actions
30 lines (26 loc) · 750 Bytes
/
index1.html
File metadata and controls
30 lines (26 loc) · 750 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>EV Data Analysis</title>
<link rel="stylesheet" href="style1.css">
<script src="ctrl.js" defer></script>
</head>
<body>
<div class="box">
<div class="dashboard">
<div class="dashboardBx">
<h2>
<i class="fa-solid fa-car"></i>
EV Data Analysis
<i class="fa-solid fa-bolt"></i>
</h2>
<input type="file" id="fileInput" name="file" required>
<button id="analyzeButton">Analyze</button>
<div id="error-message" class="error"></div>
<div id="results"></div>
</div>
</div>
</div>
</body>
</html>