-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
95 lines (89 loc) · 4 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-card" id="myNavbar">
<a href="#home" class="w3-bar-item w3-button w3-wide"></a>
<!-- Right-sided navbar links -->
<div class="w3-right w3-hide-small">
<a href="index.html" class="w3-bar-item w3-button"><i class="fa fa-user"></i> HOME</a>
<a href="about.html" class="w3-bar-item w3-button">ABOUT</a>
<a href="work.html" class="w3-bar-item w3-button"><i class="fa fa-th"></i> WORK</a>
<a href="team.html" class="w3-bar-item w3-button"><i class="fa fa-user"></i> CONTACT</a>
</div>
<!-- Hide right-floated links on small screens and replace them with a menu icon -->
<a href="javascript:void(0)" class="w3-bar-item w3-button w3-right w3-hide-large w3-hide-medium" onclick="w3_open()">
<i class="fa fa-bars"></i>
</a>
</div>
</div>
<!-- Sidebar on small screens when clicking the menu icon -->
<nav class="w3-sidebar w3-bar-block w3-black w3-card w3-animate-left w3-hide-medium w3-hide-large" style="display:none" id="mySidebar">
<a href="javascript:void(0)" onclick="w3_close()" class="w3-bar-item w3-button w3-large w3-padding-16">Close ×</a>
<a href="index.html" onclick="w3_close()" class="w3-bar-item w3-button">HOME</a>
<a href="team.html" onclick="w3_close()" class="w3-bar-item w3-button">ABOUT</a>
<a href="work.html" onclick="w3_close()" class="w3-bar-item w3-button">WORK</a>
<a href="contact.html" onclick="w3_close()" class="w3-bar-item w3-button">CONTACT</a>
</nav>
<!-- About Section -->
<div class="w3-container" style="padding:128px 16px" id="about">
<h3 class="w3-center">ABOUT XPERIENCE</h3>
<p class="w3-center w3-large">Key features of our organization</p>
<div class="w3-row-padding w3-center" style="margin-top:64px">
<div class="w3-quarter">
<i class="fa fa-desktop w3-margin-bottom w3-jumbo w3-center"></i>
<p class="w3-large">Teaching</p>
<p><ul>
<li>Offer coding courses taught by high school students</li>
<li>All tutors are professionally trained</li>
<li>1:3 student to teacher ratio</li>
<li>fun and innovative ways to learn more about CS!</li>
</ul></p>
</div>
<div class="w3-quarter">
<i class="fa fa-heart w3-margin-bottom w3-jumbo"></i>
<p class="w3-large">Consulting</p>
<p><ul>
<li>Businesses offer oppurtunities for students to shine</li>
<li>We complete about 1 project per student every year</li>
<li>Advanced CS students work to create solutions for businesses</li>
</ul></p>
</div>
<div class="w3-quarter">
<i class="fa fa-diamond w3-margin-bottom w3-jumbo"></i>
<p class="w3-large">Cougar Pride!</p>
<p><ul>
<li>Created at Vernon Hills High School</li>
<li>Led by Adam Lueken and Drshikar Asher</li>
<li>Go Cougars!</li>
</ul></p>
</div>
<div class="w3-quarter">
<i class="fa fa-cog w3-margin-bottom w3-jumbo"></i>
<p class="w3-large">Projects Completed</p>
<p><ul>
<li>James Martin Associates</li>
<li>VH ARC Tutors</li>
<li>Innovation Fair</li>
<li>American Hotels</li>
</ul>
</div>
</div>
<footer class="w3-center w3-black w3-padding-64">
<div class="w3-xlarge w3-section">
<i class="fa fa-facebook-official w3-hover-opacity"></i>
<i class="fa fa-instagram w3-hover-opacity"></i>
<i class="fa fa-twitter w3-hover-opacity"></i>
</div>
</footer>
</body>
</html>