-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.13 KB
/
index.html
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
<!DOCTYPE html>
<meta charset="utf-8">
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Engine and Standard libs benchmarks</title>
<style>
body {
font-family: Arial, sans-serif;
font-size: 25px;
text-align: inherit;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
background-color: #f4f4f4;
}
.container {
width: 90%;
max-width: 1200px;
background-color: #fff;
padding: 40px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
font-size: 2.5em;
color: #333;
}
ul {
list-style-type: none;
}
li {
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1>Engine and Standard libs benchmarks</h1>
<ul>
<li><a href="engine-benchs.html">Engine Benchmarks</a></li>
<li><a href="stdlib-benchs.html">Stdlib Benchmarks</a></li>
</ul>
</div>
</body>
</html>