Use this file to discover all available pages before exploring further.
The project is a purely static site: reestructuracion.html is the single entry point, backed by local CSS files in css/ and one JavaScript file at js/seminarios.js. No package manager, no compilation, and no environment variables are required to get it running.
Two external resources are loaded from CDNs inside the <head> of reestructuracion.html:
<!-- Google Fonts – Open Sans --><link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet"><!-- Font Awesome 6.0.0-beta3 --><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
Both resources require an active internet connection. In a fully offline environment, Open Sans falls back to the browser’s default sans-serif font, and Font Awesome icons are replaced by blank squares or Unicode fallbacks. All layout and functionality remain intact.
The simplest approach — no server required.Double-click reestructuracion.html in your file manager, or drag it into a browser window. The browser opens it using the file:// protocol.
# macOSopen reestructuracion.html# Linuxxdg-open reestructuracion.html# Windows (PowerShell)Start-Process reestructuracion.html
The file:// protocol works for everything in this project because all CSS and JS paths are relative (e.g., css/reset.css, js/seminarios.js). CDN resources still require internet access.
Python 3 ships a built-in HTTP server that serves the current directory over localhost.
python3 -m http.server 8000
Then open your browser at:
http://localhost:8000/reestructuracion.html
Stop the server at any time with Ctrl+C.
If port 8000 is already in use, pass a different port number: python3 -m http.server 9000.
The Live Server extension reloads the browser automatically whenever you save a file — useful when editing CSS or JS.
1
Install the extension
Open VS Code, go to the Extensions panel (Ctrl+Shift+X), and search for Live Server by Ritwick Dey. Click Install.
2
Open the project folder
Use File → Open Folder and select the Pagina-de-Seminarios-y-Eventos-UIM directory.
3
Launch the server
Right-click reestructuracion.html in the Explorer panel and choose Open with Live Server, or click the Go Live button in the status bar.
Pagina-de-Seminarios-y-Eventos-UIM/├── reestructuracion.html # Entry point├── css/│ ├── reset.css│ ├── layout.css│ ├── components.css│ ├── typography.css│ └── utilities.css└── js/ └── seminarios.js # Seminar data and all UI logic
All seminar data — titles, objectives, coordinators, contact details, and area tags — is defined as a JavaScript array inside js/seminarios.js. No database or API calls are made at runtime.