-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (37 loc) · 1.19 KB
/
index.html
File metadata and controls
41 lines (37 loc) · 1.19 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html>
<head>
<title>Space Tower Defense</title>
<style type="text/CSS">
body {background-image:url('Images/bg.jpg'); background-repeat: repeat;
}
</style>
<script type="text/javascript">
function timeout(){
window.setTimeout("redirect()",20000)}
function redirect(){
window.location="TowerDefense.html"
return}
</script>
</head>
<body onload="timeout()">
<img src="astronomy_1.gif" width = 275 height = 175></br>
<center>
<img src="title4.png">
</br>
<font size="4" color="white">
- created by <strong>Ryan & His Mottley Crew</strong></br>
to meet the project requirements for CSC414 at the University of Southern Mississippi</br>
Group Members: Ryan Mottley, Jonathan Wilkes, Kristin Crist, Garrick Aube, Chris Truitt</br>
<center>Fall 2011</center>
<a href="http://orca.st.usm.edu/~strelz/webgleagles">Visit the Class Site</a> <a href="https://github.com/ligerzero459/3DTowerDefense">Code Repository</a>
</font>
</br></br>
<form>
<input type="button" value="Start Game" onClick="redirect()">
</form>
</center>
</br>
</br>
<a href="http://www.usm.edu">University of Southern Mississippi</a></font>
</body>
</html>