-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·146 lines (139 loc) · 4.74 KB
/
index.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Videojuego: Tanks</title>
<link rel="stylesheet" href="css/estilos.css">
<link rel="stylesheet" href="css/headerFooter.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<header>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<a href="index.html" class="enlace">
<img src="imagenes/logozorro.png" alt="" class="logo">
</a>
<p id="iniciar_sesion"><a href="iniciarSesion.html">Iniciar sesión</a> o <a href="registrarse.html">registrarse</a></p>
<ul>
<li><a href="index.html" class="active">Inicio</a></li>
<li><a href="clanes.html">Clanes</a></li>
<li><a href="premium.html">Tienda premium</a></li>
<li id="desplegable"><a>Mas</a>
<ul>
<li><a href="servicios.html">Servicios</a></li>
<li><a href="soporte.html">Soporte</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="foro.html">Foro</a></li>
</ul>
</li>
</ul>
</nav>
</header>
<!--sectionImgPrincipal-->
<section class="sectionImgPrincipal">
<p id="batallas" >Batallas de tanques</p>
<a id="boton1" class="boton">Descargar juego</a>
</section>
<!--sectionTipos-->
<section id="sectionTipos">
<h1>Tipos</h1>
<section id="tipo1" class="tipos">
<img src="imagenes/Ligero.png"/>
<h3 class="nombreTanque">Tanques ligeros</h3>
<p class="descripcionTanque">Rápidos y dinamicos</p>
</section>
<section id="tipo2" class="tipos">
<img src="imagenes/Medio.png"/>
<h3 class="nombreTanque">Tanques medios</h3>
<p class="descripcionTanque">Mobilidad y armadura</p>
</section>
<section id="tipo3" class="tipos">
<img src="imagenes/Pesado.png"/>
<h3 class="nombreTanque">Tanques pesados</h3>
<p class="descripcionTanque">Poderosos y bien blindados</p>
</section>
<section id="tipo4" class="tipos">
<img src="imagenes/Cazador.png"/>
<h3 class="nombreTanque">Cazador de tanque</h3>
<p class="descripcionTanque">Largo alcance</p>
</section>
</section>
<!--section3-->
<section>
<h2>Requerimientos del sistema</h2>
<table>
<thead>
<tr>
<th>Requerimiento</th>
<th>Minimo</th>
<th>Recomendado</th>
</tr>
</thead>
<tbody>
<tr>
<th>Sistema operativo</th>
<td>Windows 7/8/10</td>
<td>Windows 7/8/10 - 64 bits</td>
</tr>
<tr>
<th>Procesador (CPU)</th>
<td>Un procesador con dos o más núcleos físicos compatibles con la teconología SSE2</td>
<td>Intel Core i5 (Escritorio)</td>
</tr>
<tr>
<th>Memoria (RAM)</th>
<td>3 GB</td>
<td>6 GB (o más)</td>
</tr>
<tr>
<th>Tarjeta Gráfica</th>
<td>NVIDIA GeForce 8600, ATI Radeon HD 4550</td>
<td>GeForce GTX660 (2 GB)/Radeon HD 7850 (2 GB)</td>
</tr>
<tr>
<th>Espacio libre</th>
<td>~ 70 GB</td>
<td>~ 70 GB</td>
</tr>
<tr>
<th>Conexión a Internet</th>
<td>256 kbps</td>
<td>1024 Kbps o superior (para chat de voz)</td>
</tr>
</tbody>
</table>
</section>
<!--section4-->
<section id="section4">
<p id="unete">¡ÚNETE A LA BATALLA!</p>
<a id="boton2" class="boton">Descargar juego</a>
</section>
<footer>
<section id="sectionRRSS">
<a href=""><img src="imagenes/discord.png"/></a>
<a href=""><img src="imagenes/instagram.png"/></a>
<a href=""><img src="imagenes/facebook.png"/></a>
<a href=""><img src="imagenes/youtube.png"/></a>
</section>
<section>
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="clanes.html">Clanes</a></li>
<li><a href="premium.html">Tienda premium</a></li>
<li><a href="servicios.html">Servicios</a></li>
<li><a href="soporte.html">Soporte</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="foro.html">Foro</a></li>
</ul>
</nav>
</section>
</footer>
</body>
</html>