-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
82 lines (70 loc) · 2.5 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
<!DOCTYPE>
<head>
<title>Backpack - About Us</title>
<link rel="stylesheet" href="stylesheet.css"/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
</head>
<script SRC="js/form_check.js">
</script>
</head>
<html>
<body>
<header>
<a href="signup.php" >
<img id="logo" src="img/backpack_logo.png" alt="logo" />
</a>
<form id="returning_user" action="index.php" method="post" enctype="text/plain"
onsubmit="return validateUser()">
<input id="login_button" type="submit" value="Login" />
</form>
</header>
<div class="info_slides" style="height:150%;">
<div id="about_content">
<h1>Our Vision</h1>
<p>Our philosophy is that a good student will go on to become a great person. We therefore aim to provide a communication service that will help all elementary schools shape more good students so that the world can have more great people.</p>
<h1>Our Mission</h1>
<p>We strive to create the best communication system for primary schools, by ensuring every student's guardian can access notifications on any mobile device.</p>
<p>We strive to build a system that serves in the teacher's best interest; always giving teachers control over work entering into their personal lives.</p>
<h1>Our Team</h1>
<table>
<tr>
<td style="width:145px;">
<img src="img/lukas.jpg" alt="Lukas" />
</td>
<td>
<h3>Founder/CEO
<span style="color:#5200A3;">
- Lukas Carvajal
</span>
</h3>
<p>I have always admired the tremendous impact teachers have on shaping young students' lives. So I decided to set out and use the programming skills I know to build the best method of communication for parents and teachers of young students. </p>
<p>Some of my favorite things to do are to play soccer, play the piano, do triathlons, and code. I especially love building things!</p>
<p><a style="color:black;" href="http://lcarvajal.github.io">Check out my Personal Page</a></p>
</td>
</tr>
</table>
</div>
<div id="center_links">
<div id="links">
<ul>
<li>
<a href="school_signup.php">schools</a>
</li>
<li>
<a href="careers.html">careers</a>
</li>
<li>
<a href="about.html">about us</a>
</li>
<li>
<a href="contact.php">contact us</a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>