This is a modern, responsive portfolio website for John Doe, a fictional web developer and UI/UX designer. Built with a clean, professional design using Tailwind CSS, the single-page site features a fixed navigation header with a mobile menu, a hero section with a call-to-action, and dedicated sections for "About Me," "Skills," "Portfolio," "Services," "Testimonials," and "Contact." The design utilizes a consistent color scheme of indigo and gray, with smooth hover animations and shadow effects for an interactive feel. The portfolio showcases six project cards, while the skills section highlights six key competency areas with relevant icons. The site is fully responsive, ensuring optimal viewing on desktops, tablets, and mobile devices. It includes a functional-looking contact form and a footer with social media links, presenting a comprehensive and professional online presence for a creative technologist.
Basic Information to Edit
1. Personal Information
2. About Section
Edit the text in the About Me section to reflect:
3. Skills Section
Update the skills to match your expertise:
html
<!-- Example of editing a skill card -->
<div class="bg-white p-6 rounded-lg shadow-md flex flex-col items-center text-center">
<h3 class="text-xl font-semibold mb-2">Your Skill</h3>
<p class="text-gray-600">Specific technologies or tools you know</p>
</div>
4. Portfolio Projects
For each project card, update:
5. Services
Modify the services you offer:
6. Testimonials
Replace with:
7. Contact Information
Update the contact form or add:
8. Social Media Links
Update the footer social media icons with your actual profiles:
html
<a href="your-linkedin-url" class="text-gray-400 hover:text-indigo-500">
<!-- LinkedIn icon -->
</a>
Step-by-Step Editing Process
1. Text Content
2. Images
3. Colors and Styling
The template uses Tailwind CSS classes. You can change colors by modifying classes like:
4. Customization Options
Change Color Scheme
Replace all indigo classes with your preferred color:
html
<!-- Change from -->
class="bg-indigo-600 text-white"
<!-- To -->
class="bg-blue-600 text-white"
Modify Layout
You can rearrange sections by moving the entire section blocks in the HTML.
Add/Remove Sections
Copy existing section structure to add new sections, or delete sections you don't need.
File Structure You'll Need
text
your-portfolio/
├── index.html
├── images/
│ ├── your-profile-photo.jpg
│ ├── project-1.jpg
│ ├── project-2.jpg
│ └── testimonial-photos/
├── script.js
└── responsive.css
Quick Start Steps
Important Notes