-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisualization.html
More file actions
31 lines (29 loc) · 783 Bytes
/
visualization.html
File metadata and controls
31 lines (29 loc) · 783 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
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sorting Algorithm Performance</title>
<link rel="stylesheet" href="styles.css" />
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 20px;
background-color: #0e1217;
}
h1 {
color: #333;
}
canvas {
margin-top: 20px;
}
</style>
</head>
<body>
<h1 style="padding-top: 40px">Sorting Algorithm Performance</h1>
<canvas id="sortingChart" width="800" height="380"></canvas>
<script src="script.js"></script>
</body>
</html>