Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion InnovaWeb/Front/css/c

This file was deleted.

49 changes: 49 additions & 0 deletions InnovaWeb/Front/css/style
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
}

header {
background: #333;
color: #fff;
padding: 1rem;
}

nav ul {
list-style: none;
padding: 0;
}

nav ul li {
display: inline;
margin: 0 10px;
}

nav ul li a {
color: #fff;
text-decoration: none;
}

.hero {
padding: 50px;
background: #f4f4f4;
}

.hero .btn {
display: inline-block;
padding: 10px 20px;
background: #333;
color: #fff;
text-decoration: none;
margin-top: 15px;
border-radius: 5px;
}

.about {
padding: 2rem;
background-color: #f5f5f5;
text-align: center;
}

36 changes: 36 additions & 0 deletions InnovaWeb/index.html
Original file line number Diff line number Diff line change
@@ -1 +1,37 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>InnovaWeb - Tienda Virtual</title>
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<header>
<h1>Bienvenidos a InnovaWeb</h1>
<nav>
<ul>
<li><a href="#">Inicio</a></li>
<li><a href="#">Productos</a></li>
<li><a href="#">Contacto</a></li>
</ul>
</nav>
</header>

<section class="hero">
<h2>Tu tienda virtual de confianza</h2>
<p>Próximamente disponible con lo mejor en productos y servicios.</p>
<a href="#" class="btn">Explorar</a>
</section>

<footer>
<p>© 2025 InnovaWeb. Todos los derechos reservados.</p>
</footer>
</body>
</html>
<section class="about">
<h2>Sobre InnovaWeb</h2>
<p>En InnovaWeb nos dedicamos a ofrecer soluciones de comercio electrónico de manera confiable y fácil para todos nuestros clientes.</p>
<p>Nuestra misión es ayudarte a llevar tu negocio al mundo digital con innovación y seguridad.</p>
</section>