index.html (1384B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Physics Simulations</title> 6 <meta name="Description" content="A collection of physics simulations"> 7 <meta name="viewport" content="width=device-width"> 8 <meta name="theme-color" content="#48d1cc"> 9 <link rel="manifest" href="manifest.json"> 10 <link rel="icon" type="image/png" href="images/favicon-32.png"> 11 <link rel="apple-touch-icon" href="images/favicon-180.png"> 12 <link rel="stylesheet" href="index.css"> 13 </head> 14 <body> 15 <header> 16 <h1>Physics Simulations</h1> 17 </header> 18 19 <p>A collection of physics simulations</p> 20 21 <div id="simulationLinks"> 22 <a title="Atwood Machine" href="simulations/atwood-machine.html">Atwood Machine</a> 23 <a title="Circular Motion" href="simulations/circular-motion.html">Circular Motion</a> 24 <a title="Horizontal Motion" href="simulations/horizontal-motion.html">Horizontal Motion</a> 25 <a title="Projectile Motion" href="simulations/projectile-motion.html">Projectile Motion</a> 26 <a title="Simple Pendulum" href="simulations/simple-pendulum.html">Simple Pendulum</a> 27 <a title="Spring-Mass System" href="simulations/spring-mass-system.html">Spring-Mass System</a> 28 </div> 29 </body> 30 </html>