From eb315e301edccc1ed0e561077a759be5b7d03c7e Mon Sep 17 00:00:00 2001 From: devfzn Date: Fri, 5 May 2023 15:55:36 -0400 Subject: [PATCH] estilos en archivo styles.css --- README.md | 3 +- index.html | 126 ++++++++++++++++++++++++----------------------------- style.css | 32 ++++++++++++++ 3 files changed, 90 insertions(+), 71 deletions(-) create mode 100644 style.css diff --git a/README.md b/README.md index 1cb5709..978b087 100644 --- a/README.md +++ b/README.md @@ -1,2 +1 @@ -# pagina_ventas_salaudio - +# Página de Ventas Salaudio diff --git a/index.html b/index.html index 21deb88..c2e8efa 100644 --- a/index.html +++ b/index.html @@ -3,80 +3,68 @@ + Productos en venta - -
- Logo institucional - Logo institucional -
-

VENTA DE AUDIO Y TECNOLOGIA

- + diff --git a/style.css b/style.css new file mode 100644 index 0000000..f3c4f93 --- /dev/null +++ b/style.css @@ -0,0 +1,32 @@ +body { + background-color: aquamarine; + /*text-align: center;*/ +} + +.logo-container { + display: flex; +} + +.logo-container>img { + max-width: 60px; + max-height: 60px; +} + +p { + font-size: 22px; +} + +p.precio { + font-size: 24px; + font-weight: bold; +} + +h4 { + font-size: 28px; + font-weight: bold; +} + +img.producto { + max-width: 600px; + max-height: 400px; +}