-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresults.html
68 lines (66 loc) · 1.51 KB
/
results.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
<html>
<head>
<title></title>
<style>
body
{
background-color:#d1d1d1;
}
#wrapper
{
position:absolute;
background-color:white;
width:1003px;
left:50%;
margin-left:-501px;
}
#player1
{
position:relative;
width:500px;
height:600px;
float:left;
border-right:1px solid black;
}
#player2
{
position:relative;
width:500px;
height:600px;
float:left;
}
#footer
{
position:absolute;
left:0px;
width:100%;
bottom:0;
}
a
{
font-size:20px;
color:black;
}
a:hover
{
color:teal;
}
a:visited
{
color:black;
}
</style>
</head>
<body>
<h1><center>Results</center></h1>
<div id="wrapper">
<div id="player1">
<h2><center>Player 1</center></h2><hr>
</div>
<div id="player2">
<h2><center>Player 2</center></h2><hr>
</div>
</div>
<div id="footer"><center><a href="/">Go to Start</a></center></div>
</body>
</html>