Skip to main content

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.

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.

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:
<!-- Google Fonts – Open Sans (400, 600, 700) -->
<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">
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

The project is already hosted on GitHub, making GitHub Pages the most straightforward option.
1

Push the repository to GitHub

If you have not already done so:
git remote add origin https://github.com/<your-username>/Pagina-de-Seminarios-y-Eventos-UIM.git
git push -u origin main
2

Enable GitHub Pages in repository settings

  1. Go to your repository on GitHub.
  2. Click Settings → Pages.
  3. Under Build and deployment, set Source to Deploy from a branch.
  4. Set the branch to main and the folder to / (root).
  5. Click Save.
3

Access the published site

GitHub Pages builds and publishes within a few minutes. The site is available at:
https://<your-username>.github.io/Pagina-de-Seminarios-y-Eventos-UIM/reestructuracion.html
To serve the site at the root URL without /reestructuracion.html in the path, rename reestructuracion.html to index.html before pushing — GitHub Pages serves index.html automatically.
Netlify’s drag-and-drop deploy requires no CLI and no account linking.
1

Log in to Netlify

Go to app.netlify.com and sign in or create a free account.
2

Open the drop zone

On the Sites tab, scroll to the bottom to find the Drop a folder here to deploy area.
3

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.
4

Access the deployed site

Netlify assigns a random subdomain such as:
https://random-name-123456.netlify.app/reestructuracion.html
You can assign a custom domain in Site settings → Domain management.
Vercel can deploy directly from GitHub or via its CLI.
1

Install the Vercel CLI

npm install -g vercel
2

Run the deploy command from the project folder

vercel
Accept the defaults when prompted. Vercel detects a static site automatically and skips any build step.
3

Open the deployed URL

The CLI prints the production URL on completion:
https://pagina-de-seminarios-y-eventos-uim.vercel.app
For self-hosted or institutional servers (common in university environments), copy the project files to the web root or a virtual host directory.Apache
# Copy files to the Apache document root (adjust path for your distribution)
sudo cp -r Pagina-de-Seminarios-y-Eventos-UIM/ /var/www/html/seminarios/
The site is then accessible at:
http://your-server/seminarios/reestructuracion.html
Nginx
# Copy files to the Nginx document root
sudo cp -r Pagina-de-Seminarios-y-Eventos-UIM/ /usr/share/nginx/html/seminarios/
Add a minimal server block to your Nginx configuration if you need a dedicated virtual host:
server {
    listen 80;
    server_name seminarios.example.com;
    root /usr/share/nginx/html/seminarios;
    index reestructuracion.html;
}
Then reload Nginx:
sudo nginx -s reload
No special MIME types or rewrite rules are required. Apache and Nginx serve .html, .css, and .js files correctly out of the box.

Summary

PlatformRequires CLIAutomatic deploys on pushFree tier
GitHub PagesNoYes (via Actions)Yes
Netlify dropNoNo (manual upload)Yes
Vercel CLIYes (vercel)Yes (after linking)Yes
Apache / NginxNoNoSelf-hosted

Build docs developers (and LLMs) love