forked from sgs006/Udacity-Yearbook-Project
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
255 lines (221 loc) · 12.2 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<!DOCTYPE html>
<html>
<head>
<!-- ====================== MASTER SECTION ============= -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- ========= WEBSITES META INFORMATION INCLUDING STATUS BAR COLOR FOR MOBILE BROWSERS ========== -->
<meta name="description" content="Grow with Google Scholarship 2018 - Udacity Community Yearbook. Yearbook project for 2018 GwG Cohort.">
<meta name="msapplication-TileColor" content="#00B3E4">
<meta name="theme-color" content="#00B3E4">
<meta name="apple-mobile-web-app-status-bar-style" content="#00B3E4" />
<!-- ===================== END WEBSITE META INFORMATION ========== -->
<!-- ============= SOCIAL MEDIA META PROPERTIES ================== -->
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Udacity Community Yearbook. Grow with Google Scholarship 2018." />
<meta property="og:url" content="" />
<meta property="og:site_name" content="Udacity Community Yearbook" />
<meta property="og:image" content="/public/images/src.jpg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Udacity Community Yearbook. Grow with Google Scholarship 2018." />
<!-- ===================== END SOCIAL MEDIA META ========== -->
<!-- ====================== END MASTER SECTION ============= -->
<title>About | Udacity Community Yearbook</title>
<!-- ====================== MASTER SECTION ============= -->
<!-- ======== CSS STYLESHEETS INCLUDING BOOTSTRAP 4 (https://getbootstrap.com) AND OPEN SANS FONT FROM GOOGLE ========= -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700">
<link rel="stylesheet" href="public/stylesheets/reboot.css">
<link rel="stylesheet" href="public/stylesheets/styles-master.css">
<!-- ===================== END CSS STYLESHEETS ========== -->
<!-- ====================== END MASTER SECTION ============= -->
<!-- ======== PAGE SPECIFIC STYLES ========= -->
<link rel="stylesheet" href="public/stylesheets/about.css">
<!-- ===================== END PAGE SPECIFIC STYLES ========= -->
</head>
<body>
<!-- ====================== MASTER SECTION ============= -->
<!-- ======== SKIP NAVIGATION NEEDED FOR SCREEN READERS ============ -->
<!-- SKIP NAV -->
<div id="skiplink" class="sr-only sr-only-focusable">
<!-- CHANGE HREF TO ID OF MAIN CONTENT SECTION -->
<a href="#MainContent">skip to page content</a>
</div>
<!-- =========== END SKIP NAVIGATION NEEDED FOR SCREEN READERS ============ -->
<!-- ======== WEBSITE NAVIGATION SECTION ============ -->
<nav class="navbar navbar-expand-sm navbar-dark">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span>Menu</span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link" href="index.html" title="Home">Home</a>
</li>
<li class="nav-item">
<a href="yearbook.html" title="Yearbook" class="nav-link">Yearbook</a>
</li>
<li class="nav-item">
<a href="resources.html" title="Resources" class="nav-link">Resources</a>
</li>
<li class="nav-item">
<a href="cssart.html" title="CSS Art Projects" class="nav-link">CSS Art Projects</a>
</li>
<li class="nav-item">
<a href="geolocation.html" title="GROW Geolocation Map" class="nav-link">Geolocation</a>
</li>
<li class="nav-item">
<a href="about.html" title="About" class="nav-link">About</a>
</li>
</ul>
</div>
</nav>
<!-- =========== END WEBSITE NAVIGATION PANE ============ -->
<!-- ====================== END MASTER SECTION ============= -->
<header>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h4 class="lead text-center">Front-End Web Dev Scholars 2018</h4>
<h1 class="display-4 text-center">About This Project</h1>
</div>
</div>
</header>
<!-- ======== EXAMPLE SECTION ============ -->
<!-- NOTES:
If using Bootstrap styling
Each section should be placed with a pair of DIVs with classes of container or container-fluid and row
-->
<div class="container-fluid">
<!-- ROW -->
<!-- ROW -->
<div class="row" role="row">
<div class="col">
<img src="public/images/scholarship-badge.png" class="center-block" alt="Udacity Scholarship Badge" height="500" width="500">
<div class="col">
<p class="spacing lead">Since January 2018, as the Grow with Google Developer Scholarship Recipients, we have worked diligently
on completing courses in HTML, CSS, JavaScript and jQuery. As we near the end of our program, we
are excited to share our new skills. As such, we wanted to create a project that would hone and showcase
these skills while putting familiar names to faces. This led us to create a yearbook for our GwG
cohort. Here you can learn about members of our group and see the skills we have learned put into
practice. If you're a member of our cohort, feel free to contribute to the wesbite. We all know that
practice makes perfect.</p>
</div>
<hr>
</div>
</div>
<!-- ROW -->
<div class="row" role="row">
<div class="col">
<div>
<h3 class="text-center spacing">Mission</h3>
</div>
<div class="row spacing text-center">
<div class="col-md-4">
<i class="fa fa-laptop" aria-hidden="true"></i>
<p>Provide an opportunity for scholarship recipients to work in a team environment and improve skills.</p>
</div>
<div class="col-md-4">
<i class="fa fa-users" aria-hidden="true"></i>
<p>Provide a source for scholarship recipients to keep up with each other.</p>
</div>
<div class="col-md-4">
<i class="fa fa-handshake-o" aria-hidden="true"></i>
<p>Allow prospective employers to see our skills and learn more about each of us.</p>
</div>
</div>
<hr>
</div>
</div>
<!-- ROW -->
<div class="row" role="row">
<div class="col text-center">
<h3 class=" spacing">Our Motto</h3>
<img src="public/images/motto.jpg" class="center-block" alt="Yearbook motto image" height="500" width="500">
<hr>
<div>
<blockquote class="blockquote blockquote-reverse spacing">
<p class="mb-0">Whether you want to uncover the secrets of the universe, or you just want to pursue a career in the
21st century, basic computer programming is an essential skill to learn.</p>
<footer class="blockquote-footer">Quote by
<cite title="Stephen Hawking">Stephen Hawking</cite>
</footer>
</blockquote>
</div>
<hr>
</div>
</div>
<!-- ROW -->
<div class="row spacing" role="row">
<div class="col text-center">
<h3 class="spacing">Google 2018 Udacity Scholars</h3>
<p>Are you a Google 2018 Udacity Scholar? Click the button below to create a profile and be added to the Yearbook.</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLScALecDNlYWpz9pomMFSZvenBwW8cmCo23n2bvmllaHxAl0-g/viewform" title="Add Me"
class="btn btn-primary">Add Me!</a>
</div>
</div>
</div>
<!-- =========== END EXAMPLE SECTION ============ -->
<!-- ====================== MASTER SECTION ============= -->
<!-- ====================== FOOTER ============= -->
<footer id="footer">
<div class="master-footer text-center">
<nav>
<ul class="list-inline">
<li class="list-inline-item">
<a href="index.html" title="Home">Home</a>
</li>
<li class="list-inline-item">
<a href="yearbook.html" title="Yearbook">Yearbook</a>
</li>
<li class="list-inline-item">
<a href="resources.html" title="Resources">Resources</a>
</li>
<li class="list-inline-item">
<a href="cssart.html" title="CSS Art Projects">CSS Art Projects</a>
</li>
<li class="list-inline-item">
<a href="geolocation.html" title="GROW Geolocation Map">Geolocation</a>
</li>
<li class="list-inline-item">
<a href="about.html" title="About">About</a>
</li>
</ul>
</nav>
<p>
© 2018 Udacity: Grow with Google Front End Scholars
</p>
</div>
</>
<!-- ====================== END FOOTER ============= -->
<!-- ====================== RETURN TO TOP ============= -->
<!-- Return to Top -->
<div>
<a href="javascript:" id="return-to-top">
<i class="fa fa-angle-up"></i>
</a>
</div>
<!-- ====================== END RETURN TO TOP ============= -->
<!-- ====================== END MASTER SECTION ============= -->
<!-- ====================== MASTER SECTION ============= -->
<!-- ======== jQuery first, then Popper.js, then Bootstrap JS | BOOTSTRAP AND PROJECT SCRIPTS AT THE FOOTER ========= -->
<!-- Non-slimed version. Slimmed version missing common used features -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="public/scripts/classProject.js"></script>
<!-- ================= INCLUDING OF SCRIPT FILES END HERE ===================== -->
<!-- ====================== END MASTER SECTION ============= -->
<!-- ======== PAGE SPECIFIC JAVASCRIPT ========= -->
<!-- ===================== END PAGE SPECIFIC JAVASCRIPT ========= -->
</body>
</html>