-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeat.html
More file actions
71 lines (66 loc) · 1.99 KB
/
Heat.html
File metadata and controls
71 lines (66 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Heatmap Visualization</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background: linear-gradient(135deg, red, orange, yellow, green, blue, indigo, violet);
font-family: 'Arial', sans-serif;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 40px;
color: white;
}
.card {
background-color: white;
color: black;
border-radius: 15px;
padding: 30px;
max-width: 600px;
width: 100%;
box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
h2 {
background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: bold;
text-align: center;
}
.heatmap-placeholder {
width: 100%;
height: 300px;
background: #eee;
border: 2px dashed #ccc;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
color: gray;
margin-bottom: 20px;
}
.confidence {
text-align: center;
font-size: 1.2rem;
font-weight: bold;
color: #28a745;
}
.btn {
display: block;
margin: 30px auto 0;
}
</style>
</head>
<body>
<div class="card">
<h2>Heatmap Visualization</h2>
<div class="heatmap-placeholder">[ Heatmap Image Placeholder ]</div>
<div class="confidence">Confidence Score: 87.24%</div>
<a href="/dashboard" class="btn btn-success">Back to Dashboard</a>
</div>
</body>
</html>