A modern and responsive portfolio website to showcase your skills, projects, and contact information.
- π¨ Modern and beautiful design
- π± Fully responsive (Responsive Design)
- π English language support (LTR)
- β‘ Smooth and engaging animations
- π§ Interactive contact form
- π― Smooth navigation (Smooth Scrolling)
- π Skills and statistics display
- π Social media links
- Personal introduction
- Call-to-action buttons
- Profile image
- Personal description
- Key statistics and numbers
- Experience and skills
- Frontend skills
- Backend skills
- Tools and technologies
- Showcase completed projects
- Technologies used
- View and code links
- Contact information
- Contact form
- Social media links
- HTML5 - Page structure
- CSS3 - Styling and design
- JavaScript - Interactions and animations
- Font Awesome - Icons
- Google Fonts - Inter font family
- Download the files
- Open
index.htmlin your browser - Replace personal information in the files
<!-- Change name -->
<h1 class="hero-title">Hi, I'm <span class="highlight">Your Name</span></h1>
<!-- Change job title -->
<p class="hero-subtitle">Web Developer & Designer</p>
<!-- Change description -->
<p class="hero-description">
Write your personal description here...
</p><!-- Email -->
<p>nima.hydrz@googlemail.com</p>
<!-- Phone -->
<p>+1 (555) 123-4567</p>
<!-- Location -->
<p>New York, USA</p><a href="https://github.com/yourusername" class="social-link">
<i class="fab fa-github"></i>
</a>
<a href="https://linkedin.com/in/yourusername" class="social-link">
<i class="fab fa-linkedin"></i>
</a>In styles.css you can change the main colors:
:root {
--primary-color: #3498db;
--secondary-color: #f39c12;
--accent-color: #667eea;
--text-color: #2c3e50;
}To add a new project, copy this code in the projects section:
<div class="project-card">
<div class="project-image">
<i class="fas fa-laptop-code"></i>
</div>
<div class="project-content">
<h3>Project Name</h3>
<p>Project description</p>
<div class="project-tech">
<span>Technology 1</span>
<span>Technology 2</span>
</div>
<div class="project-links">
<a href="view-link" class="btn btn-small">View</a>
<a href="code-link" class="btn btn-small btn-outline">Code</a>
</div>
</div>
</div>- Typing animation for main title
- Counter animation for statistics
- Fade-in animation for elements
- Parallax effect for hero section
- Interactive mobile menu
- Contact form with validation
- Scroll to top button
- Active navigation link highlighting
- Responsive design for all devices
- SEO optimization
- Fast loading
- Cross-browser compatibility
- Chrome (latest version)
- Firefox (latest version)
- Safari (latest version)
- Edge (latest version)
This project is released under the MIT License.
If you have suggestions for improving this portfolio, I'd love to hear them!
Note: This portfolio is designed as a base template and you can customize it according to your needs.