-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextgame.html
109 lines (99 loc) · 4.17 KB
/
nextgame.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>**Jugador numero 12**</title>
<!-- ENLAZAMOS HOJA DE ESTILO -->
<link rel="stylesheet" type="text/css" href="./css/gen.css" />
</head>
<body>
<div id="genLayer">
<!-- DIVISION DE CABECERA -->
<div id="headBox">
<a name="top">
<img src="./img/bannerPrototipo.gif" alt="banner" id="topBanner" /> </a>
</div>
<!-- DIVISION DEL MENU IZQUIERDO -->
<div id="leftMenuBar">
<div id='cssmenu'>
<ul>
<li><a href='profile.html'><span>Perfil</span></a></li>
<li><a href='skills.html'><span>Habilidades</span></a></li>
<li><a href='actions.html'><span>Acciones</span></a></li>
<li><a href='fans.html'><span>Afición</span></a></li>
<li><a href='stats.html'><span>Estadísticas</span></a></li>
<li><a href='classification.html'><span>Clasificación</span></a></li>
<li><a href='nextgame.html'><span>Partido</span></a></li>
</ul>
</div>
</div>
<!-- DIVISION CENTRAL/CONTENIDO/BANNER -->
<div id="contentSection">
<div align="center">
<h3>SIGUIENTE PARTIDO</h3>
</div>
<table width="53%" border="0" align="center" cellpadding="2px">
<tr style="background-color: #7ee0d1">
<td width="40%" align="center">Equipo Local</td>
<td width="20%" align="center"> </td>
<td width="40%" align="center">Equipo Visitante</td>
</tr>
<tr style="background-color: #a4e1c8">
<td align="center"><img src="img/escudo_equipo1.gif" width="30" height="32" /><strong>EQUIPO 1</strong></td>
<td align="center">VS</td>
<td align="center"><img src="img/escudo_equipo2.gif" width="30" height="32" /><strong>EQUIPO 2</strong></td>
</tr>
<tr style="background-color: #7ee0d1">
<td width="40%" align="center" colspan="3">Hora del partido</td>
</tr>
<tr style="background-color: #a4e1c8">
<td width="20%" align="center" colspan="3">02/12/2012 19:45</td>
</tr>
<tr style="background-color: #7ee0d1">
<td width="40%" align="center" colspan="3">Ambiente</td>
</tr>
<tr style="background-color: #a4e1c8">
<td width="20%" align="center" colspan="3">Caldeado</td>
</tr>
</table>
<table width="53%" border="0" align="center" cellpadding="2px">
<tr style="background-color: #7ee0d1">
<td width="40%" align="center" colspan="2">Acciones completadas</td>
</tr>
<tr style="background-color: #7ee0d1">
<td width="40%" align="center">Local</td>
<td width="40%" align="center">Visitante</td>
</tr>
<tr style="background-color: #a4e1c8">
<td width="40%" align="center">
<p>Sabotear banquillo rival x 2</p>
<p>Pelearse con una afición rival x 3</p>
</td>
<td width="40%" align="center">
<p>Pelearse con una afición rival x 7</p>
<p>Repartir banderas entre los aficionados x 2</p>
<p>Crear tifo x 1</p>
</td>
</tr>
</table>
<a href="#" title="Comprar Entrada">Comprar Entrada</a> <br />
<a href="game.html" title="Ir al partido">Ir al partido</a>
</div>
<!-- DIVISION DEL MENU DERECHO -->
<div id="rightMenuBar">
<img width="150px" src="./img/EstadoJugador.gif" style="padding-bottom: 10px">
<div id='cssmenu'>
<ul>
<li><a href='account.html'><span>Mi Cuenta</span></a></li>
<li><a href='messages.html'><span>Mensajes (0)</span></a></li>
<li><a href='index.html'><span>Logout</span></a></li>
</ul>
</div>
</div>
<!-- DIVISION DEL PIE DE PÁGINA -->
<div id="bottomBox">
<a href="#top">Ir arriba</a>
</div>
</div> <!-- End GenLayer -->
</body>
</html>