Build a Portfolio Website Projects Section & Cards
5 / 16
Next
Projects Section & Cards ~12min

The Projects Section

This is the most important section. It's what employers actually look at. Each project card should answer: what is it, what did you build, and where can I see it?

Project card anatomy

<div class="project-card">
  <img src="screenshot.png" alt="Project name">
  <div class="card-body">
    <div class="tags">
      <span>React</span><span>Node.js</span>
    </div>
    <h3>Task Manager App</h3>
    <p>A full-stack todo app with real-time sync.</p>
    <div class="links">
      <a href="https://demo.com">Live Demo</a>
      <a href="https://github.com/...">GitHub</a>
    </div>
  </div>
</div>

How many projects?

  • 3-5 is the sweet spot
  • Quality over quantity, one great project beats five mediocre ones
  • Pin your best on top

Getting projects

  • Build them from this very course!
  • Clone+extend open source projects
  • Create tools you personally need
Tasks
Preview