-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
74 lines (67 loc) · 3.35 KB
/
Copy pathabout.html
File metadata and controls
74 lines (67 loc) · 3.35 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title> LPC | Info</title>
<link rel="stylesheet" href="css/styles.css">
<meta name="viewport" content="width=device-width, initial-scale = 1, maximum-scale=1, user-scalable=no" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png">
<link rel="manifest" href="/favicons/manifest.json">
<link rel="mask-icon" href="/favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/favicons/favicon.ico">
<meta name="msapplication-config" content="/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<script src="js/classie.js"></script>
<script>
function init() {
window.addEventListener('scroll', function(e){
var distanceY = window.pageYOffset || document.documentElement.scrollTop,
shrinkOn = 300,
header = document.querySelector("header");
if (distanceY > shrinkOn) {
classie.add(header,"smaller");
} else {
if (classie.has(header,"smaller")) {
classie.remove(header,"smaller");
}
}
});
}
window.onload = init();
</script>
</head>
<body>
<header>
<div class="container clearfix">
<h1 id="logo"><a href="index.html">
<img style="margin-left:-25px; padding-top:15px; padding-bottom:40px; width:200px; height:150px;" src="images/logo.png">
</a></h1>
<nav>
<a style="color: rgba(255,255,255,1);"href="about.html">About</a>
<a href="members.html">Members</a>
<a href="officers.html">Officers</a>
<a href="resources.html">Resources</a>
<a href="contact.html"> Contact Us!</a>
</nav>
</div>
</header>
<main role="main">
<section class="sect-banner">
<ul class="kf-slider">
<li></li>
<li></li>
<li></li>
</ul>
<div class="v-center">
<p style="font-size:1.8vh;">LPC provides materials and lectures to further understanding of physics and to prepare you for yearly competitions through hosting discussions and skirmishes. We’ll cover everything taught in an AP Physics 1 course but also explore its deeper applications. In addition, we strive to increase interest and provide services for physics education to others outside of Lowell.
We split the club body into groups of 5-6 people to encourage discussion based problem solving and to establish a concrete basis of thinking. Each meeting, we pitch these teams against each other to challenge each’s understanding of physics, normally through problem sets but occasionally with thought experiments or engineering/drafting tasks.<a> Just think debate teams, but physics.</a>
<br>
We’re currently in the process of contacting <a href="http://www.healthiersf.org/ExCELafterschool/">ExCEL afterschool programs </a> and Lowell Science Days for potential outreach opportunities. We’ll have two types of outreach: extended tutoring programs and single day “wow factor” demonstrations at different schools or at <a href="https://sfpl.org/">SFPL.</a>
</p>
</div>
</section>
</main>
</body>
</html>