-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
68 lines (67 loc) · 2.94 KB
/
home.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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>LearnZilla | Home</title>
<link rel="stylesheet" type="text/css" href="StyleSheet1.css" />
<link rel="icon" type="image/bmp" href="favicon.bmp" />
<script type="text/javascript" src="profile.js"></script>
<script type="text/javascript" src="performance.js"></script>
<script type="text/javascript" src="clock.js"></script>
<script type="text/javascript" src="sfx.js"></script>
</head>
<body>
<!--main-->
<div class="main">
<!--header-->
<div class="header">
<img id="center" src="learnzilla.bmp" width="550" alt="Learnzilla" onclick="squeak();" />
</div>
<!--nav-->
<div class="nav">
<a class="navlinks" id="currentnav">Home</a>
<a class="navlinks" href="about.html">About</a>
<a class="navlinks" href="subjects.html">Subjects</a>
<a class="navlinks" href="login.html">Login</a>
<a class="navlinks" href="progress.html">Progress</a>
</div>
<!--content-->
<div id="home" class="content">
<h1>Welcome, to Learnzilla!</h1>
<br />
<img id="center" src="cap.bmp" width="150" alt="graduation cap" />
<br />
<p>Welcome to the Learnzilla program, a solution to online and real-world education!</p>
<p>This website follows the rule of 1 lesson = $1.00 raised in funds for public schools. You participating in these lessons benefits both your academics and the community of your local schools.</p>
<p>By clicking on one of the subjects below, you have access to many lessons of mathematics, science, and literary courses!</p>
<br />
<a id="algebra" class="homesubjectlink" href="login.html">Algebra</a>
<br />
<a id="biology" class="homesubjectlink" href="login.html">Biology</a>
<br />
<a id="english" class="homesubjectlink" href="login.html">English</a>
<br />
<a id="worldhistory" class="homesubjectlink" href="login.html">World History</a>
</div>
<!--footer-->
<div class="footer">
<table class="cleartable">
<tr>
<td width="650">
<i>TEAM #2068</i>
<br />
<i>Software Development</i>
<br />
<i>Technology Student Association</i>
</td>
<td width="100">
<a href="https://tsaweb.org/">
<img class="footerimg" src="tsa_logo.png" width="100" alt="TSA Logo" />
</a>
</td>
</tr>
</table>
</div>
</div>
</body>
</html>