-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1015 Bytes
/
index.html
File metadata and controls
38 lines (38 loc) · 1015 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
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Rhythm Rage Level Tool</title>
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
margin: 0;
padding: 20px;
background: #1a1a1a;
color: #ffffff;
}
#app {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
p {
margin: 10px 0;
line-height: 1.5;
}
</style>
</head>
<body id="body">
<button role="application" id="app">Main</button>
<p>
Welcome! Please, if you use NVDA, enable dynamic content changes by
pressing NVDA key + 5.
</p>
<p>
¡te damos la bienvenida! Si usas NVDA, por favor, habilita la lectura de
contenido dinámico con la tecla NVDA + 5.
</p>
<script type="module" src="/src/main.ts"></script>
</body>
</html>