A modern, responsive portfolio website for showcasing digital artwork and illustrations. This website is inspired by the Instagram profile @esoarts_.
- Responsive design that works on desktop and mobile devices
- Modern and clean user interface
- Gallery section for artwork display
- About section for artist information
- Contact section with social media links
- Smooth scrolling and animations
- Clone this repository
- Add your artwork images to the
imagesfolder - Update the gallery items in
script.jswith your artwork information - Customize the content in
index.htmlto match your needs - Modify the styles in
styles.cssif desired
index.html- Main HTML structurestyles.css- All styling and animationsscript.js- JavaScript for gallery and interactionsimages/- Directory for artwork images
To add new artwork to the gallery, edit the galleryItems array in script.js:
const galleryItems = [
{
id: 1,
imageUrl: 'images/your-artwork.jpg',
title: 'Your Artwork Title',
description: 'Description of your artwork'
},
// Add more items here
];The color scheme can be customized in styles.css by editing the CSS variables:
:root {
--primary-color: #1a1a1a;
--accent-color: #e91e63;
--text-color: #333;
--light-bg: #f5f5f5;
}This website is compatible with modern browsers including:
- Chrome
- Firefox
- Safari
- Edge
This project is open source and available under the MIT License.