Back to Blog

How to Create a Stunning Developer Portfolio with GitHub Pages in 2023

How to Create a Stunning Developer Portfolio with GitHub Pages in 2023

How to Create a Stunning Developer Portfolio with GitHub Pages in 2023

In today's competitive tech landscape, having a professional developer portfolio is no longer optional—it's essential. A well-crafted portfolio showcases your skills, projects, and personality to potential employers and clients. GitHub Pages offers an elegant, free solution for hosting your portfolio, with the added benefit of demonstrating your familiarity with Git and GitHub—skills valued by virtually every tech employer.

This comprehensive guide will walk you through creating a stunning developer portfolio with GitHub Pages, from initial setup to advanced customization.

Why GitHub Pages for Your Developer Portfolio?

Before diving into the how-to, let's examine why GitHub Pages is an excellent choice for your developer portfolio:

  • Free hosting with reliable uptime and performance
  • Custom domain support for a professional touch
  • Version control built-in for tracking changes to your site
  • Developer-friendly with support for Jekyll and other static site generators
  • Demonstrates your GitHub proficiency to potential employers
  • Seamless integration with your existing GitHub projects

Setting Up Your GitHub Pages Repository

Let's start by creating the repository that will host your portfolio:

Step 1: Create a New Repository

  1. Log in to your GitHub account
  2. Click the "+" icon in the top-right corner and select "New repository"
  3. Name your repository using the format username.github.io (replace "username" with your GitHub username)
  4. Make the repository public
  5. Initialize with a README.md file
  6. Click "Create repository"
# Or from the command line:
git init
git remote add origin https://github.com/username/username.github.io.git
echo "# My Developer Portfolio" > README.md
git add README.md
git commit -m "Initial commit"
git push -u origin main

Step 2: Enable GitHub Pages

  1. Go to your repository settings
  2. Scroll down to the "GitHub Pages" section
  3. Under "Source", select "main" branch
  4. Click "Save"

After a few minutes, your site will be live at https://username.github.io.

Building Your Portfolio with HTML, CSS, and JavaScript

If you prefer to build your portfolio from scratch, you can use plain HTML, CSS, and JavaScript:

Step 3: Create Essential Files

Create these files in your repository:

index.html       # Your homepage
css/styles.css   # Your stylesheet
js/script.js     # Your JavaScript
images/          # Folder for your images

Step 4: Create a Basic HTML Structure

Here's a starter index.html template for your portfolio:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Your Name - Developer Portfolio</title>
    <meta
      name="description"
      content="Portfolio of Your Name, a Full-Stack Developer specializing in React, Node.js, and more."
    />
    <link rel="stylesheet" href="css/styles.css" />
    <script src="js/script.js" defer></script>
    <!-- Font Awesome for icons -->
    <link
      rel="stylesheet"
      href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
    />
  </head>
  <body>
    <header>
      <nav>
        <div class="logo">YourName</div>
        <ul class="nav-links">
          <li><a href="#about">About</a></li>
          <li><a href="#projects">Projects</a></li>
          <li><a href="#skills">Skills</a></li>
          <li><a href="#contact">Contact</a></li>
        </ul>
        <div class="burger">
          <div class="line1"></div>
          <div class="line2"></div>
          <div class="line3"></div>
        </div>
      </nav>
    </header>

    <section id="hero">
      <div class="container">
        <h1>Hi, I'm <span class="highlight">Your Name</span></h1>
        <h2>Full-Stack Developer</h2>
        <p>
          I build responsive, user-friendly web applications with modern
          technologies.
        </p>
        <a href="#contact" class="cta-button">Get in Touch</a>
      </div>
    </section>

    <section id="about">
      <div class="container">
        <h2>About Me</h2>
        <div class="about-content">
          <div class="about-image">
            <img src="images/profile.jpg" alt="Your Name" />
          </div>
          <div class="about-text">
            <p>
              Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla
              facilisi. Sed euismod, nisl vel ultricies lacinia, nisl nisl
              aliquam nisl, eget aliquam nisl nisl vel nisl.
            </p>
            <p>
              In my free time, I enjoy contributing to open-source projects and
              attending tech meetups in my city.
            </p>
            <div class="social-links">
              <a href="https://github.com/yourusername" target="_blank"
                ><i class="fab fa-github"></i
              ></a>
              <a href="https://linkedin.com/in/yourprofile" target="_blank"
                ><i class="fab fa-linkedin"></i
              ></a>
              <a href="https://twitter.com/yourhandle" target="_blank"
                ><i class="fab fa-twitter"></i
              ></a>
            </div>
          </div>
        </div>
      </div>
    </section>

    <section id="projects">
      <div class="container">
        <h2>My Projects</h2>
        <div class="projects-grid">
          <!-- Project cards will go here -->
          <div class="project-card">
            <img src="images/project1.jpg" alt="Project 1" />
            <h3>Project Name</h3>
            <p>
              Description of the project goes here. Explain what technologies
              you used and what problem it solves.
            </p>
            <div class="project-links">
              <a href="#" class="button">Live Demo</a>
              <a href="#" class="button">GitHub</a>
            </div>
          </div>
          <!-- More project cards -->
        </div>
      </div>
    </section>

    <!-- More sections for Skills, Contact, etc. -->

    <footer>
      <div class="container">
        <p>&copy; 2023 Your Name. All rights reserved.</p>
      </div>
    </footer>
  </body>
</html>

Using a Static Site Generator: Jekyll

GitHub Pages works seamlessly with Jekyll, a static site generator that can make your portfolio more maintainable:

Step 5: Set Up Jekyll (Alternative Approach)

  1. Install Jekyll and Bundler on your local machine:
gem install jekyll bundler
  1. Create a new Jekyll site:
jekyll new my-portfolio
cd my-portfolio
  1. Create a Gemfile with GitHub Pages dependencies:
source "https://rubygems.org"
gem "github-pages", group: :jekyll_plugins
  1. Run Jekyll locally:
bundle exec jekyll serve
  1. Customize your Jekyll site by editing the config files and templates

Portfolio Sections to Include

A comprehensive developer portfolio should include these key sections:

1. Hero Section

This is your first impression—make it count:

  • Your name and professional title
  • A concise tagline describing your specialties
  • A professional headshot or avatar
  • A clear call-to-action

2. About Section

Share your story and personality:

  • Your professional background
  • Educational history
  • Personal interests related to tech
  • Your unique value proposition

3. Projects Section

The heart of your portfolio:

  • 3-6 of your best projects
  • Screenshots or GIFs showing the projects in action
  • Technologies used
  • Your role in each project
  • Links to live demos and source code

4. Skills Section

Showcase your technical abilities:

  • Programming languages
  • Frameworks and libraries
  • Tools and platforms
  • Soft skills

5. Experience/Resume Section

Your professional journey:

  • Work history with accomplishments
  • Education
  • Certifications
  • Link to downloadable resume

6. Testimonials/Recommendations

Social proof of your abilities:

  • Client testimonials
  • Colleague recommendations
  • Performance reviews

7. Contact Section

Make it easy for opportunities to find you:

  • Contact form
  • Email address
  • Social media profiles
  • GitHub profile link

Customizing Your GitHub Pages Portfolio

Take your portfolio to the next level with these customizations:

Custom Domain

Connect your portfolio to a professional domain name:

  1. Purchase a domain name from a registrar like Namecheap or Google Domains
  2. In your repository settings, under GitHub Pages, enter your domain
  3. Set up DNS records with your domain provider:
    • Add an A record pointing to GitHub's IP addresses
    • Add a CNAME record for www subdomain

Themes and Templates

Don't start from scratch—leverage existing themes:

  1. GitHub Pages themes: Select a theme from your repository settings
  2. Jekyll themes: Choose from thousands of free and premium Jekyll themes
  3. HTML/CSS templates: Find free or premium portfolio templates online

Analytics and SEO

Optimize your portfolio for search engines and track visitors:

  1. Add Google Analytics:
<!-- Add this to your <head> section -->
<script
  async
  src="https://www.googletagmanager.com/gtag/js?id=YOUR_GA_ID"
></script>
<script>
  window.dataLayer = window.dataLayer || []
  function gtag() {
    dataLayer.push(arguments)
  }
  gtag('js', new Date())
  gtag('config', 'YOUR_GA_ID')
</script>
  1. Include SEO meta tags:
<meta name="description" content="Your portfolio description" />
<meta name="keywords" content="developer, portfolio, your name, your skills" />
<meta name="author" content="Your Name" />
<!-- Open Graph tags for social sharing -->
<meta property="og:title" content="Your Name - Developer Portfolio" />
<meta
  property="og:description"
  content="Portfolio showcasing my web development projects"
/>
<meta property="og:image" content="https://yourdomain.com/images/preview.jpg" />
<meta property="og:url" content="https://yourdomain.com" />

Advanced Features for Your Portfolio

Stand out with these advanced features:

Project Filtering

Allow visitors to filter projects by technology:

// Simple project filtering
const filterBtns = document.querySelectorAll('.filter-btn')
const projects = document.querySelectorAll('.project-card')

filterBtns.forEach((btn) => {
  btn.addEventListener('click', () => {
    const filter = btn.dataset.filter

    projects.forEach((project) => {
      if (filter === 'all' || project.dataset.tags.includes(filter)) {
        project.style.display = 'block'
      } else {
        project.style.display = 'none'
      }
    })

    // Update active filter button
    filterBtns.forEach((btn) => btn.classList.remove('active'))
    btn.classList.add('active')
  })
})

Dark Mode Toggle

Implement a popular user preference option:

const darkModeToggle = document.getElementById('dark-mode-toggle')
const body = document.body

darkModeToggle.addEventListener('click', () => {
  body.classList.toggle('dark-mode')

  // Save preference to localStorage
  const isDarkMode = body.classList.contains('dark-mode')
  localStorage.setItem('darkMode', isDarkMode)
})

// Check for saved user preference
const savedDarkMode = localStorage.getItem('darkMode')
if (savedDarkMode === 'true') {
  body.classList.add('dark-mode')
}

Contact Form

Add a working contact form with Formspree (no server needed):

<form action="https://formspree.io/f/your-form-id" method="POST">
  <input type="text" name="name" placeholder="Your Name" required />
  <input type="email" name="email" placeholder="Your Email" required />
  <textarea name="message" placeholder="Your Message" required></textarea>
  <button type="submit">Send Message</button>
</form>

Showcasing Your GitHub Contributions

Integrate your GitHub activity directly into your portfolio:

GitHub Activity Calendar

Add your contribution graph:

<img
  src="https://ghchart.rshah.org/yourusername"
  alt="Your GitHub Contributions Chart"
/>

Pinned Repositories

Display your best repositories:

async function fetchGitHubRepos() {
  const username = 'yourusername'
  const response = await fetch(
    `https://api.github.com/users/${username}/repos?sort=updated&per_page=6`
  )
  const repos = await response.json()

  const repoContainer = document.getElementById('github-repos')

  repos.forEach((repo) => {
    const repoCard = document.createElement('div')
    repoCard.className = 'repo-card'
    repoCard.innerHTML = `
      <h3>${repo.name}</h3>
      <p>${repo.description || 'No description available'}</p>
      <div class="repo-stats">
        <span>⭐ ${repo.stargazers_count}</span>
        <span>🍴 ${repo.forks_count}</span>
      </div>
      <a href="${
        repo.html_url
      }" target="_blank" class="repo-link">View on GitHub</a>
    `
    repoContainer.appendChild(repoCard)
  })
}

fetchGitHubRepos()

Portfolio Maintenance and Updates

Keep your portfolio fresh and relevant:

Automating Updates

Use GitHub Actions to automate portfolio updates:

# .github/workflows/update-projects.yml
name: Update Projects

on:
  schedule:
    - cron: '0 0 * * 0' # Run weekly
  repository_dispatch:
    types: [update-portfolio]

jobs:
  update:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Set up Node.js
        uses: actions/setup-node@v2
        with:
          node-version: '16'
      - name: Install dependencies
        run: npm ci
      - name: Update project data
        run: node scripts/update-projects.js
      - name: Commit changes
        run: |
          git config --local user.email "[email protected]"
          git config --local user.name "GitHub Action"
          git add .
          git diff --quiet && git diff --staged --quiet || git commit -m "Update projects data"
          git push

Regular Content Reviews

Schedule quarterly reviews to:

  • Update project descriptions and screenshots
  • Add new skills you've acquired
  • Refresh your profile photo and about section
  • Update your work experience

Conclusion

A GitHub Pages portfolio is more than just a showcase—it's a demonstration of your technical abilities, attention to detail, and commitment to your craft. By following the steps in this guide, you've created a professional portfolio that will help you stand out in a competitive job market.

Remember that your portfolio is a living document that should evolve as your career progresses. Regularly update it with new projects, skills, and experiences to keep it relevant and impressive.

Ready to take your GitHub skills to the next level? Explore Gitdash for more powerful ways to manage your GitHub repositories and enhance your development workflow.

What unique feature will you add to make your portfolio stand out? Share your thoughts in the comments below!