-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
89 lines (81 loc) · 4.83 KB
/
Copy pathabout.html
File metadata and controls
89 lines (81 loc) · 4.83 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<title>About | UpSTREAM</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navigation">
<button class="logoButton">
<a href="https://www.upstreamprogram.org/"><img class="logoImage" src="logoButton.webp" alt="logo"><img></a>
</button>
<div class="menu">
<ul>
<li><a class="item" href="./about">About</a></li>
<li><a class="item" href="./stream">STREAM</a></li>
<li><a class="item" href="./apply">Apply</a></li>
<li><a class="item" href="./volunteer">Volunteer</a></li>
<li><a class="item" href="./contact">Contact</a></li>
</ul>
</div>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
<div class="surroundingBox">
<img class="leftImage" src="about.webp" alt="about"><img>
<h6 class="shrinkMargin" style="font-size: 1.5rem; font-family: Lexend;">
About UpSTREAM
<ul style="font-size: 1.17rem; line-height: 1.75rem; font-family: Lexend Deca; text-align: left;">
<li>UpSTREAM teaches STREAM (Science, Technology, Robotics, Engineering, Arts, Mathematics) to Seattle students in grades 3–5,
working to bridge disproportionate access to STREAM opportunities.</li><br>
<li>UpSTREAM offers three free programs: STREAM Labs, hands-on learning experiences; LiveSTREAMs,
interactive virtual workshops; and Online Tutoring, weekly one-on-one academic support.
</li>
</ul>
<button class="boxButton" onclick="pageSTREAM()"><a class="text" href="stream.html">Learn About STREAM</a></button>
</h6>
</div>
<div class="surroundingBox">
<img class="leftImage" src="behind.webp" alt="behind"><img>
<h6 class="shrinkMargin" style="color: #355BF2; font-size: 1.5rem; font-family: Lexend;">
Behind UpSTREAM
<ul style="font-size: 1.17rem; line-height: 1.75rem; font-family: Lexend Deca; text-align: left;">
<li>UpSTREAM was founded by Seattle students with a drive to give back to their community. Since its
establishment, over 50 students from high schools across the city have volunteered for UpSTREAM.</li><br>
<li>Our instructors exceed rigorous standards that provide students with high quality learning experiences.
we take pride in fostering a curious, creative, and welcoming learning environment!</li>
</ul>
<button class="boxButton" onclick="pageContact()"><a class="text" href="contact.html">Contact UpSTREAM</a></button>
</h6>
</div>
<div class="surroundingBox">
<img class="leftImage" src="choose.webp" alt="choose"><img>
<h6 class="shrinkMargin" style="font-size: 1.5rem; font-family: Lexend;">
Choose UpSTREAM
<ul style="font-size: 1.17rem; line-height: 1.75rem; font-family: Lexend Deca; text-align: left;">
<li>Early exposure to STREAM helps students build lasting enthusiasm for the field.
UpSTREAM delivers engaging, hands-on opportunities that ignite curiosity in students wherever they learn.
</li><br>
<li>Servicing over 1,000 students, UpSTREAM has worked with learners from every background.
No matter a student's experience with STREAM, we are committed to exceeding every student's expectations!
</li>
</ul>
<button class="boxButton" onclick="pageApply()"><a class="text" href="apply.html">Apply for UpSTREAM</a></button>
</h6>
</div>
<div class="footer">
<img class="footerImage" src="logo.webp" alt="logo" onclick="pageIndex()"><img>
<h4 style="color: #355BF2;">© <span class="current-year"></span> UpSTREAM Program</h4>
</div>
<script src="script.js"></script>
</body>
</html>