-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
58 lines (56 loc) · 2.08 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
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About BSE</title>
<link rel="stylesheet" href="style4.css"/>
</head>
<body>
<header>
<div class="navbar">
<div class="logo img">
<img src="images/logo2.png" alt="BSE logo">
</div>
<ul class="links">
<li><a href="index.html">HOME</a></li>
<li><a href="pvdx.html">PVDX</a></li>
<li><a href="equisat.html">EQUISAT</a></li>
<li><a href="about.html">ABOUT BSE</a></li>
<li><a href="subgroup.html">SUBGROUPS</a></li>
<li><a href="project.html">PROJECTS</a></li>
<li><a href="contact.html">CONTACTS</a></li>
</ul>
</div>
</header>
<main>
<div class="about-container">
<p>About BSE</p>
</div>
<div class="columns-container">
<div class="goals-column">
<h2>Our Goals</h2>
<ul>
<li> - Make space accessible to people of all backgrounds</li>
<li> - Prove that anyone can be involved in space</li>
<li> - Minimize costs to enable a wider audience to build a satellite</li>
<li> - Create a baseline design for future projects</li>
<li> - Keep both design and production simple</li>
<li> - Open Source all of our designs and procedures</li>
<li> - Inspire future generations to explore space!</li>
</ul>
</div>
<div class="diy-column">
<h2>DIY (Do it Yourself) Philosophy</h2>
<ul>
<li> - Encourage collaborative education among an all-undergraduate team</li>
<li> - Utilize processes commonly accessible to the informed public</li>
<li> - Minimize cost by minimizing pre-built component use</li>
<li> - Student built from scratch</li>
<li> - Design to avoid tolerance stack-up and maintain simplicity</li>
<li> - Have fun and learn a lot!</li>
</ul>
</div>
</div>
</main>
</body>
</html>