-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Physics Simulations</title>
<meta name="Description" content="A collection of physics simulations">
<meta name="viewport" content="width=device-width">
<meta name="theme-color" content="#48d1cc">
<link rel="manifest" href="manifest.json">
<link rel="icon" type="image/png" href="images/favicon-32.png">
<link rel="apple-touch-icon" href="images/favicon-180.png">
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<h1>Physics Simulations</h1>
</header>
<p>A collection of physics simulations</p>
<div id="simulationLinks">
<a title="Atwood Machine" href="simulations/atwood-machine.html">Atwood Machine</a>
<a title="Circular Motion" href="simulations/circular-motion.html">Circular Motion</a>
<a title="Horizontal Motion" href="simulations/horizontal-motion.html">Horizontal Motion</a>
<a title="Projectile Motion" href="simulations/projectile-motion.html">Projectile Motion</a>
<a title="Simple Pendulum" href="simulations/simple-pendulum.html">Simple Pendulum</a>
<a title="Spring-Mass System" href="simulations/spring-mass-system.html">Spring-Mass System</a>
</div>
</body>
</html>