Documentation Index
Fetch the complete documentation index at: https://mintlify.com/luisllatas-dev/portafolio-programador-web-junior/llms.txt
Use this file to discover all available pages before exploring further.
Get Up and Running
This guide will help you set up and view the portfolio on your local machine. No build tools or package managers required - just open and view!Clone or Download the Repository
First, get a local copy of the portfolio files:Or download the ZIP file and extract it to your preferred location.
Make sure you have all files including the
/css, /img, and /svg directories for proper rendering.Open in Your Browser
The simplest way is to open
index.html directly:Option A: Direct File Opening- Navigate to the project folder
- Double-click
index.html - It will open in your default browser
If images don’t load, a local server is required because some browsers restrict file:// protocol access to local resources.
Explore the Portfolio Sections
Once loaded, you’ll see the complete portfolio with these sections:Navigation Bar - Fixed at the top with links to:Hero Section - Profile introduction:Skills Display - Animated technology icons that fade in with staggered timingTry hovering over the skill icons to see the scale and brightness effects!
- Quien Soy (Who I Am)
- Habilidades (Skills)
- Proyectos (Projects)
- Contáctame (Contact Me)
Test Responsive Design
The portfolio is fully responsive. Test it by:
- Desktop View - Default 2-column grid layout for the hero section
- Mobile View - Resize your browser to under 780px width
Open your browser’s DevTools (F12) and use the device toolbar to test different screen sizes.
Verify All Features Work
Test these interactive elements:Navigation Hover Effects
- Hover over navigation links to see the animated underline
- The animation expands from 0% to 100% width over 0.5 seconds
- Press
Tabto navigate through links - Notice the blue focus outline on focused elements
- Icons should fade in with staggered delays (0.2s to 0.8s)
- Hover to see scale increase to 1.15x with brightness boost
If animations seem too fast or slow, you can adjust timing in
css/styles.css - look for animation-duration and animation-delay properties.What You’ll See
When properly loaded, you’ll experience:- Gradient Background: A smooth dark gradient from black (
#000000) through blue (#0069a8) to dark blue-gray (#101828) - Fixed Header: Navigation stays at the top as you scroll (z-index: 99)
- Profile Section: 3:2 grid ratio between text content and profile image
- Animated Skills: 7 technology icons with fade-in and hover effects
Troubleshooting
Images aren't loading
Images aren't loading
- Verify the
/imgand/svgfolders exist in your project root - Check that file paths match exactly (case-sensitive on some systems)
- Use a local server instead of opening
index.htmldirectly - Check browser console (F12) for 404 errors
Styles look broken
Styles look broken
- Confirm
css/styles.cssexists and is in the correct location - Check the link tag in
index.htmlline 8:<link rel="stylesheet" href="css/styles.css"> - Clear browser cache (Ctrl+Shift+R or Cmd+Shift+R)
Navigation doesn't scroll smoothly
Navigation doesn't scroll smoothly
Next Steps
Now that your portfolio is running, you’re ready to customize it:Customize Content
Replace placeholder text and add your own information
Customize Colors
Change the gradient and accent colors to match your brand
Customize Images
Replace profile photo and skill icons
Learn CSS Grid
Understand the layout system powering the portfolio
Since this is a static HTML/CSS site, any changes you make will be visible immediately after refreshing your browser!