Se agrego el index.html con la estructura de la pagina, el .gitignore y la carpeta de images

This commit is contained in:
2026-04-24 15:50:44 -03:00
parent e38755373f
commit d47f7b2b20
3 changed files with 56 additions and 0 deletions

42
index.html Normal file
View File

@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fluxio | Cloud Gaming</title>
</head>
<body>
<header>
<h1><img src="images/logo.png" alt="Logo de Fluxio" class="logo"> Fluxio</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#" id="Suscripcion">Suscribirse</a></li>
</ul>
</nav>
</header>
<main>
<article>
<h2>Bienvenido a Fluxio</h2>
<p>La nueva era del gaming ya está aquí. Con nuestra plataforma, el hardware deja de ser una barrera para tu pasión: jugá tus títulos favoritos en cualquier dispositivo, sin descargas y sin latencia. Solo necesitás una conexión a internet para transformar tu navegador en una consola de última generación.</p>
</article>
<section id="planes">
<h3>Nuestros Planes</h3>
<!-- Agregar mas planes a futuro. -->
<table>
<tr>
<th>Plan</th>
<th>Precio</th>
</tr>
<tr>
<td>Pro</td>
<td>$10/mes</td>
</tr>
</table>
</section>
</main>
<footer>
<p>&copy; 2026 Fluxio Cloud Gaming - Rosario, Santa Fe.</p>
</footer>
</body>
</html>