-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (48 loc) · 1.23 KB
/
Copy pathindex.html
File metadata and controls
56 lines (48 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Final Project Visualization</title>
</head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
font-family: 'Montserrat', sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
}
ul {
list-style-type: none;
display: flex;
}
li {
width: 24%;
display: block;
margin: 10px;
gap: 10px;
}
a {
text-decoration: none;
border: 1px solid #ccc;
display: block;
padding: 10px;
cursor: pointer;
transition: all 0.3s ease;
color: maroon;
text-align: center;
}
a:hover {
background-color: #fefefe;
}
</style>
<body>
<ul>
<li><a href="./course-project/accuracy.html">Accuracy</a></li>
<li><a href="./course-project/precision.html">Precision</a></li>
<li><a href="./course-project/recall.html">Recall</a></li>
<li><a href="./course-project/f1_score.html">F1 Score</a></li>
</ul>
</body>
</html>