From ac5a59cb587cacefbf4ea754759a82967ad404d6 Mon Sep 17 00:00:00 2001 From: Marjccba <108437371+Marjccba@users.noreply.github.com> Date: Sun, 14 Sep 2025 19:07:30 -0300 Subject: [PATCH 1/3] agregar index.html para landing page --- InnovaWeb/index.html | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/InnovaWeb/index.html b/InnovaWeb/index.html index 8b13789..ab68c9e 100644 --- a/InnovaWeb/index.html +++ b/InnovaWeb/index.html @@ -1 +1,32 @@ + + + + + + InnovaWeb - Tienda Virtual + + + +
+

Bienvenidos a InnovaWeb

+ +
+ +
+

Tu tienda virtual de confianza

+

Próximamente disponible con lo mejor en productos y servicios.

+ Explorar +
+ + + + From a5f31068d6d721ad4156e2d795a2d5f08d66beb8 Mon Sep 17 00:00:00 2001 From: Marjccba <108437371+Marjccba@users.noreply.github.com> Date: Sun, 14 Sep 2025 19:23:24 -0300 Subject: [PATCH 2/3] Update index.html --- InnovaWeb/index.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/InnovaWeb/index.html b/InnovaWeb/index.html index ab68c9e..ec61761 100644 --- a/InnovaWeb/index.html +++ b/InnovaWeb/index.html @@ -29,4 +29,9 @@

Tu tienda virtual de confianza

+
+

Sobre InnovaWeb

+

En InnovaWeb nos dedicamos a ofrecer soluciones de comercio electrónico de manera confiable y fácil para todos nuestros clientes.

+

Nuestra misión es ayudarte a llevar tu negocio al mundo digital con innovación y seguridad.

+
From ed44c82c6c704fb4e7f55b250c93d27f3b2985e4 Mon Sep 17 00:00:00 2001 From: Marjccba <108437371+Marjccba@users.noreply.github.com> Date: Sun, 14 Sep 2025 19:35:23 -0300 Subject: [PATCH 3/3] estructura inicial --- InnovaWeb/Front/css/c | 1 - InnovaWeb/Front/css/style | 49 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 1 deletion(-) delete mode 100644 InnovaWeb/Front/css/c create mode 100644 InnovaWeb/Front/css/style diff --git a/InnovaWeb/Front/css/c b/InnovaWeb/Front/css/c deleted file mode 100644 index 8b13789..0000000 --- a/InnovaWeb/Front/css/c +++ /dev/null @@ -1 +0,0 @@ - diff --git a/InnovaWeb/Front/css/style b/InnovaWeb/Front/css/style new file mode 100644 index 0000000..d7bb189 --- /dev/null +++ b/InnovaWeb/Front/css/style @@ -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; +} +