-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
46 lines (39 loc) · 1.93 KB
/
about.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>No Lab Physics</title>
<link rel="stylesheet" href="./styles/global.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&display=swap" rel="stylesheet">
<script type="module" src="./navbar.js"></script>
<style>
main {
max-width: 50rem;
margin: 0 auto;
}
p {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 17px;
}
</style>
</head>
<body>
<physics-navbar></physics-navbar>
<main class="regular-page">
<h1>About</h1>
<p>For a video demonstration, see <a href="https://itexpo.live/high-school/13">our IT Expo page</a>.</p>
<p>No Lab Physics is an interactive system for creating and sharing customizable, virtual physics labs. It was built with Javascript, CSS, and HTML. The code is open source and
<a href="https://github.com/WalnutProgramming/No-Lab-Physics">available on Github</a>.
</p>
<h2>Our Mission</h2>
<p>Through this project, we hope to make physics experimentation more accessible for students and educators, both in and out of the classroom.</p>
<h2>Our Club</h2>
<p>This app was made by students from the
<a href="http://walnuthillseagles.com/#gsc.tab=0">Walnut Hills High School</a> Programming Club, a chapter of
<a href="https://interalliance.org/">INTERalliance</a>. The club meets every Thursday to learn about programming and work on projects that we will present at competitions. The club is open to all Walnut Hills students interested in computers and IT, no matter their level of programming experience.
</p>
</main>
</body>
</html>