-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDebateManager.html
More file actions
79 lines (64 loc) · 1.65 KB
/
DebateManager.html
File metadata and controls
79 lines (64 loc) · 1.65 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<html>
<script type="text/javascript">
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
document.write('<link rel="stylesheet" type="text/css" href="SplashpageMobile.css">');
}
else
{
document.write('<link rel="stylesheet" type="text/css" href="DebateManager.css">');
}
</script>
<head>
<title>Judge</title>
</head>
<body>
<div id="Banner">
Albany High School Freshmen Debates
</div>
<div id="MainBody">
<div id="Debate1">
<h1>Debate 1</h1>
<br>
<h2>Description of debate with time/date and topic.</h2>
<br>
</div>
<div id="Debate2">
<h1>Debate 2</h1>
<br>
<h2>Description of debate with time/date and topic.</h2>
<br>
</div>
<div id="Debate3">
<h1>Debate 3</h1>
<br>
<h2>Description of debate with time/date and topic.</h2>
<br>
</div>
<br>
<br>
<br>
</div>
<script type="text/javascript">
var something = document.getElementById('Debate1');
something.style.cursor = 'pointer';
something.onclick = function() {
window.open ('DebateCreate.html','_self',false)
};
var something = document.getElementById('Debate2');
something.style.cursor = 'pointer';
something.onclick = function() {
window.open ('DebateCreate.html','_self',false)
};
var something = document.getElementById('Debate3');
something.style.cursor = 'pointer';
something.onclick = function() {
window.open ('DebateCreate.html','_self',false)
};
var something = document.getElementById('LogIn');
something.style.cursor = 'pointer';
something.onclick = function() {
window.open ('DebateCreate.html','_self',false)
};
</script>
</body>
</html>