-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.28 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Performance Test Links</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f0f0f0;
}
h1 {
margin-bottom: 20px;
}
.links {
display: flex;
flex-direction: column;
gap: 10px;
}
a {
text-decoration: none;
color: #007bff;
font-size: 18px;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Performance Test Links</h1>
<p>Click on the links below to see the performance tests. Open the dev tools and select slow down of 20x then record to see the differences.</p>
<div class="links">
<a href="blits-perf-test/">Blits Performance Test</a>
<a href="solid-perf-test/">Solid Performance Test</a>
<a href="vue-perf-test/">Vue Performance Test</a>
</div>
</body>
</html>