File structure
All project files live in theactividad2_schujman/ directory. There is no build output folder — the site runs directly from these source files.
The entire site is contained in a single
index.html file. All styling is handled by Tailwind CSS loaded via CDN, so there is no compiled CSS file.Site sections
The page is divided into six structural areas defined by HTML landmarks andid attributes used for anchor navigation.
| Section | Selector | Purpose |
|---|---|---|
| Navigation bar | <nav> | Fixed top bar with logo, anchor links to all sections, and social media icons (Instagram, WhatsApp, Facebook) |
| Hero | #inicio | Full-width hero with the “Nueva Colección Primavera/Verano” headline, a 3% discount badge, a “Ver Colección” CTA button, and the aura.jpg hero image |
| About | #nosotros | Team member grid (5 cards), brand story text, values list, and a “¿Por qué elegirnos?” callout |
| Products | #productos | Responsive 4-column product grid, each card containing an image, name, short description, price, and an “Agregar” button |
| Contact | #contacto | Contact form (submits via mailto:) on the left and a contact info panel on the right |
| Footer | <footer> | Brand tagline, policy links, and copyright notice |
Dependencies
The project loads two external libraries via CDN. No npm install or local download is required.| Library | Version | URL |
|---|---|---|
| Tailwind CSS | latest (CDN) | https://cdn.tailwindcss.com |
| Font Awesome | 6.4.0 | https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css |
<head> of index.html:
Running locally
No build step is needed. The site is plain HTML and loads all dependencies from CDN at runtime.
Open index.html in your browser
Double-click
index.html, or right-click and choose Open with → your preferred browser. You can also drag the file into an open browser window.