-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (96 loc) · 3.52 KB
/
index.html
File metadata and controls
99 lines (96 loc) · 3.52 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
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>LCS</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<script src="script.js"></script>
<nav class="nav" id="menu">
<div class="wrap">
<div class="brand">
<span>YearUp/LCS</span>
</div>
<button id="mobile-btn" class="hamburger-btn">
<span class="hamburger-line"></span>
<span class="hamburger-line"></span>
<span class="hamburger-line"></span>
</button>
<ul class="top-menu" id="top-menu">
<li><a href="#"><i class="fa fa-home" aria-hidden="true"></i></a></li>
<li><a href="#">Services</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</nav>
<header class="hero">
<div class="content">
<p>Learning Community Serena(LCS) is the 28th Software Development carrier track class at Year Up New York | New Jersey. Also is the first virtual Year Up class.<br></p>
<p>while (!(succeed = try()));</p>
<button class="cta">Learn More</button>
</div>
</header>
<main class="main">
<section>
<div class="tab-row">
<div class="col-12">
<h2>What is Year Up?</h2>
<p>Year Up’s mission is to close the Opportunity Divide by ensuring that young adults gain the skills, experiences, and support that will empower them to reach their potential through careers and higher education. We achieve this mission through a high support, high expectation model that combines marketable job skills, stipends, internships, and college credits. Our holistic approach focuses on students’ professional and personal development to place these young adults on a viable path to economic self-sufficiency.</p>
</div>
</section>
<section class="feature">
<div class="tab-row">
<div class="col-12">
<h2>Year Up Vision</h2>
<p>In the future, every young adult will be able to reach their full potential.</p>
</div>
</div>
</div>
</section>
<section>
<h2><center>Meet Our Staff<center></h2>
<div class="tab-row">
<div class="col-4">
<h2>Manager</h2>
<img src="serena.jpg" height="140" width="140" alt="">
<p>Serena Tillman
<br>Program's Manager</p>
</div>
<div class="col-4">
<h2>Instructor</h2>
<img src="deodat.jpg" height="140" width="140" alt="">
<p>Deodat Sharma
<br>Software Development Instructor</p>
</div>
<div class="col-4">
<h2>Instructor</h2>
<img src="kara.jpg" height="140" width="140" alt="">
<p>Kara Badette
<br>Business Communications Instructor</p>
<p></p>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="row">
<div class="col-6">
<p><i class="fa fa-phone" aria-hidden="true"></i> +1 (212) 785-3340</p>
<p><i class="fa fa-envelope" aria-hidden="true"></i> admissionsnyc@yearup.org</p>
</div>
<div class="col-6" style="text-align: right;">
<h3>OUR MISSION</h3>
<p>Year Up’s mission is to close the Opportunity Divide by ensuring that young adults gain the skills, experiences, and support that will empower them to reach their potential through careers and higher education.</p>
</ul>
</div>
</div>
<hr>
<div class="row">
<div class="col-12">© LCS - <a href="#">Facebook</a> - <a href="#">Twitter</a></div>
</div>
</footer>
</body>
</html>