-
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.48 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 1.48 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" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<title>Ball Simulation</title>
<style>
.sphere
{
background-color: red;
border-radius: 50%;
height: 50px;
position: absolute;
width: 50px;
}
</style>
</head>
<body>
<noscript>
<strong>
We're sorry but this application doesn't work properly without JavaScript enabled.<br />
Please enable it to continue.
</strong>
</noscript>
<div id="app">
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
<div class="sphere"></div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>