-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (63 loc) · 2.52 KB
/
index.html
File metadata and controls
63 lines (63 loc) · 2.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
<!DOCTYPE html>
<html>
<head>
<title>SMIC Computer Club</title>
<meta name="description" content="SMIC Computer Club Website">
<meta name="keywords" content="SMIC,SMIC School,SMIC Private School,The SMIC Private School,Computer Club">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="home-background"></div>
<header>
<div class="title">
<h1 id="home-title">SMIC COMPUTER CLUB</h1>
</div>
<nav id="home-nav">
<table align="center">
<td>
<a href="index.html">HOME</a>
</td>
<td>
<a href="about.html">ABOUT</a>
</td>
<td>
<a href="contact.html">CONTACT</a>
</td>
</table>
</nav>
</header>
<main id="home-main">
<section>
<div class="project-container">
<div id="log-of-HW" onclick="location.href='https://github.com/SMIC-ComputerClub/log-of-HW'">
<img src="images/log(HW).svg">
<br>
log(HW) is a platform for students to share and keep track of homework assignments more effectively.
</div>
<div id="GPATool" onclick="location.href='http://smicjangpercy.weebly.com'">
<img src="images/GPATool.jpg" class="border">
<br>
<br>
GPATool is a complex program that helps you calculate your High School GPA by simply entering some information.
</div>
</div>
</section>
</main>
</body>
</html>
<script>
var title = document.getElementById("home-title");
var nav = document.getElementById("home-nav");
var main = document.getElementById("home-main");
var background = document.getElementById("home-background");
title.style.animationPlayState = "paused";
nav.style.animationPlayState = "paused";
main.style.animationPlayState = "paused";
background.style.animationPlayState = "paused";
window.onload = function() {
title.style.animationPlayState = "running";
nav.style.animationPlayState = "running";
main.style.animationPlayState = "running";
background.style.animationPlayState = "running";
}
</script>