A simple, modern personal landing page website.
- Clean, responsive design
- Modern UI with smooth animations
- Placeholder sections for future projects
- Social media links (Medium and Twitter)
- Easy to customize and extend
- Mobile-friendly
- Open
index.htmlin your web browser - Or serve it using a local server:
# Using Python python3 -m http.server 8000 # Using Node.js (if you have http-server installed) npx http-server # Using PHP php -S localhost:8000
When you're ready to add your web applications, you can use the addProjectLink() function in script.js.
Example:
// Uncomment and modify this line in script.js
addProjectLink(0, 'My Web App', 'A description of my awesome web application', 'https://myapp.com', 'Visit App');- Edit
styles.cssto customize colors, fonts, and layout - The CSS uses CSS custom properties (variables) for easy theming
- All colors are defined in the
:rootselector for easy customization
- Edit
index.htmlto update the content, add more social links, or modify sections - The structure is semantic and easy to understand
- Social media links are easily customizable in the "Follow Me" section
├── index.html # Main HTML file
├── styles.css # Stylesheet
├── script.js # JavaScript for interactions
└── README.md # This file
- Add more social media platforms
- Integrate with a CMS or headless CMS
- Add blog section
- Implement dark mode toggle
- Add more interactive animations
- Add contact form functionality