Because the site is entirely static — one HTML file, five CSS files, and one JavaScript file — it can be hosted on any platform that serves static files. There is no build step, no environment variables to configure, and no server-side runtime required.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/val20-11/Pagina-de-Seminarios-y-Eventos-UIM/llms.txt
Use this file to discover all available pages before exploring further.
Key deployment facts
No build step
Upload the files as-is. There is nothing to compile or bundle.
No environment variables
The site has zero runtime configuration. No
.env file is needed.Relative paths throughout
Assets use relative paths (
css/reset.css, js/seminarios.js), so the site works correctly when served from a subdirectory.CDN dependencies
Google Fonts and Font Awesome are loaded from CDNs. Visitors need internet access for fonts and icons to render correctly.
External dependencies in reestructuracion.html
The following CDN links are declared in the <head> of reestructuracion.html and are fetched at page load time by each visitor’s browser:
These links are not bundled locally. If you need the site to work in a restricted-network environment, download and host both resources alongside the other static files, then update the
href values accordingly.Deployment platforms
GitHub Pages
GitHub Pages
The project is already hosted on GitHub, making GitHub Pages the most straightforward option.
Enable GitHub Pages in repository settings
- Go to your repository on GitHub.
- Click Settings → Pages.
- Under Build and deployment, set Source to Deploy from a branch.
- Set the branch to
mainand the folder to/ (root). - Click Save.
Netlify (drag and drop)
Netlify (drag and drop)
Netlify’s drag-and-drop deploy requires no CLI and no account linking.
Log in to Netlify
Go to app.netlify.com and sign in or create a free account.
Open the drop zone
On the Sites tab, scroll to the bottom to find the Drop a folder here to deploy area.
Drag the project folder
Drag the entire
Pagina-de-Seminarios-y-Eventos-UIM/ folder into the drop zone. Netlify uploads and deploys all files instantly.Vercel
Vercel
Vercel can deploy directly from GitHub or via its CLI.
Apache or Nginx web server
Apache or Nginx web server
For self-hosted or institutional servers (common in university environments), copy the project files to the web root or a virtual host directory.ApacheThe site is then accessible at:NginxAdd a minimal server block to your Nginx configuration if you need a dedicated virtual host:Then reload Nginx:
No special MIME types or rewrite rules are required. Apache and Nginx serve
.html, .css, and .js files correctly out of the box.Summary
| Platform | Requires CLI | Automatic deploys on push | Free tier |
|---|---|---|---|
| GitHub Pages | No | Yes (via Actions) | Yes |
| Netlify drop | No | No (manual upload) | Yes |
| Vercel CLI | Yes (vercel) | Yes (after linking) | Yes |
| Apache / Nginx | No | No | Self-hosted |