-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
27 lines (23 loc) · 1000 Bytes
/
about.html
File metadata and controls
27 lines (23 loc) · 1000 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>About - Koshy Physics</title>
<link rel="stylesheet" href="style/custom.css">
</head>
<body>
<div class="container">
<nav class="navigation">
<ul>
<span id="logo"><a href="index.html">Koshy Physics</a></span>
<li><a href="index.html">Home</a></li>
<li><a href="simulations.html">Simulations</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
<section class="about">
<p>Hey, my name is Philip La and I created this site. This site purpose was for my final project in AP Physics B. I used two JavaScript physics engine to make the simulations. They are <a href="https://github.com/wellcaffeinated/PhysicsJS">PhysicsJS</a> and <a href="https://github.com/liabru/matter-js">Matter.js</a>. Even though this project is complete, if you would like to <a href="https://github.com/koshyphysics/koshyphysics.github.io">contribute</a> to this feel free!</p>
</section>
</body>
</html>