Back|Portfolio TemplatePreview Mode
SEO Title: John Doe - Creative Developer|Description: Portfolio of John Doe, a creative developer
https://portfolio.example.com
John Doe

Creative Developer

I build beautiful digital experiences that make an impact.

Selected Work

Project One

Web Design

Project Two

Branding

© 2024 John Doe. All rights reserved.

Template Details

HTML Content


      <div style="min-height: 100vh; background: #0f0f0f; color: white;">
        <header style="padding: 30px 50px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333;">
          <span style="font-size: 20px; font-weight: bold;">John Doe</span>
          <nav style="display: flex; gap: 30px;">
            <a href="#work" style="color: #888; text-decoration: none;">Work</a>
            <a href="#about" style="color: #888; text-decoration: none;">About</a>
            <a href="#contact" style="color: #888; text-decoration: none;">Contact</a>
          </nav>
        </header>
        
        <main style="padding: 100px 50px;">
          <h1 style="font-size: 64px; margin-bottom: 20px;">Creative Developer</h1>
          <p style="font-size: 20px; color: #888; max-width: 500px;">
            I build beautiful digital experiences that make an impact.
          </p>
        </main>
        
        <section id="work" style="padding: 80px 50px;">
          <h2 style="font-size: 32px; margin-bottom: 40px;">Selected Work</h2>
          <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;">
            <div style="background: #1a1a1a; border-radius: 12px; overflow: hidden;">
              <div style="height: 200px; background: linear-gradient(135deg, #667eea, #764ba2);"></div>
              <div style="padding: 20px;">
                <h3>Project One</h3>
                <p style="color: #888;">Web Design</p>
              </div>
            </div>
            <div style="background: #1a1a1a; border-radius: 12px; overflow: hidden;">
              <div style="height: 200px; background: linear-gradient(135deg, #f093fb, #f5576c);"></div>
              <div style="padding: 20px;">
                <h3>Project Two</h3>
                <p style="color: #888;">Branding</p>
              </div>
            </div>
          </div>
        </section>
        
        <footer style="padding: 40px 50px; border-top: 1px solid #333; text-align: center; color: #888;">
          <p>&copy; 2024 John Doe. All rights reserved.</p>
        </footer>
      </div>
    

CSS Styles


      * { margin: 0; padding: 0; box-sizing: border-box; }
      body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
      a:hover { color: white !important; }