Skip to main content
This guide shows you how to customize all the text content in your portfolio template using real examples from the source code.

Updating Personal Information

Your personal information appears in multiple places throughout the template. Here’s where to update it:

Header Section

Locate the header section in index.html around lines 72-92:
index.html
1

Update Profile Image

Replace images/sin.png with your own profile photo path. The image should be square (recommended: 300x300px minimum).
2

Change Your Name

Update the <h2> tag with your full name.
3

Update Your Title

Modify the <p> tag below your name with your professional title or tagline.
4

Update Social Links

Replace the URLs in each href attribute with your own social media profiles.

Home Section

The main introduction appears around lines 144-156:
index.html
The lead-paragraph class creates larger, more prominent text. Use it for your main introduction and key messages.

Personal Info Section

Update your detailed contact information around lines 177-186:
index.html

Modifying the About Section

The About section is located around lines 160-173. This is where you tell your professional story:
index.html
Keep your bio focused and professional. Aim for 3-4 paragraphs that highlight your experience, skills, and career goals.

Adding Work Experience

Work experience entries are structured as timeline items around lines 277-305:
index.html
1

Duplicate Timeline Item

Copy the entire <div class="timeline-item" data-aos="fade-up"> block to add a new experience entry.
2

Update Date and Company

Modify the meta-date paragraph with your employment dates and company name.
3

Add Job Title

Update the info-title heading with your position.
4

Describe Your Role

Write 2-3 sentences describing your key responsibilities and achievements.

Education Entries

Education follows the same timeline structure around lines 308-344:
index.html
Use the same duplication process as work experience to add multiple degrees or certifications.

Customizing Services Offered

The services section is a grid layout around lines 192-254:
index.html

Available Tabler Icons

The template uses Tabler Icons. Common service icons include:
  • ti ti-device-imac-code - Web Development
  • ti ti-settings-automation - Automation
  • ti ti-sitemap - Systems Development
  • ti ti-user-search - Consulting
  • ti ti-database - Database Management
  • ti ti-api - API Development
  • ti ti-brand-github - GitHub
  • ti ti-palette - Design
Browse all available icons at Tabler Icons and use the class format ti ti-icon-name.

Technical Skills Section

Update your skills around lines 262-274:
index.html
Each skill is a simple <h4> tag with an icon. Add or remove skills as needed by duplicating the lines.

SEO and Meta Tags

Don’t forget to update your SEO information in the <head> section around lines 5-27:
index.html
Always update the og:url meta tag with your actual website URL for proper social media sharing.