generated from marquez.juan/Ejercicio-inicial--git-y-HTML
Se agrego el index.html con la estructura de la pagina, el .gitignore y la carpeta de images
This commit is contained in:
14
.gitignore
vendored
Normal file
14
.gitignore
vendored
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
|
||||||
|
venv/
|
||||||
|
.venv/
|
||||||
|
env/
|
||||||
|
|
||||||
|
.env
|
||||||
|
|
||||||
|
.DS_Store # macOS
|
||||||
|
Thumbs.db # Windows
|
||||||
|
|
||||||
|
node_modules/
|
||||||
BIN
images/logo.png
Normal file
BIN
images/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 220 KiB |
42
index.html
Normal file
42
index.html
Normal 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>© 2026 Fluxio Cloud Gaming - Rosario, Santa Fe.</p>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user