body { font-family: system-ui, -apple-system, 'Segoe UI', Roboto; max-width: 900px; margin: 2rem auto; padding: 0 1rem; line-height: 1.5; background: #faf9f8; color: #1e1e2a; } header, footer { text-align: center; } .project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin: 2rem 0; } .card { background: white; padding: 1rem 1.5rem; border-radius: 16px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); } a { color: #2563eb; text-decoration: none; } tylerpalko.github.io/ βββ index.html βββ projects/ β βββ index.html βββ blog/ β βββ index.html βββ resume/ β βββ index.html βββ style.css βββ assets/ β βββ profile.jpg β βββ resume.pdf βββ _config.yml (if using Jekyll) 7. Optional Jekyll _config.yml title: Tyler Palko description: Developer & creator url: "https://tylerpalko.github.io" theme: minima
<!DOCTYPE html> <html> <head> <title>Tyler Palko Β· Developer & Creator</title> <link rel="stylesheet" href="style.css"> </head> <body> <header> <h1>Tyler Palko</h1> <p>Building tools that make sense. Code, design, and systems.</p> <nav> <a href="/">Home</a> <a href="/projects">Projects</a> <a href="/blog">Blog</a> <a href="/resume">Resume</a> </nav> </header> <main> <section> <h2>π About me</h2> <p>I'm a [software developer / engineer / creative coder] based in [City]. I focus on [e.g., web dev, data viz, automation, open source]. Currently exploring [something you're learning].</p> <p>π Working on: <strong>[current project name]</strong><br> π± Learning: [Rust / Three.js / Go / etc.]<br> π« Reach me: <a href="mailto:tyler@example.com">tyler@example.com</a></p> </section> tylerpalko.github
<section> <h2>π Featured projects</h2> <div class="project-grid"> <div class="card"> <h3>projectβname</h3> <p>Short description + tech stack.</p> <a href="#">GitHub β</a> </div> <div class="card"> <h3>anotherβtool</h3> <p>What problem it solves.</p> <a href="#">Live demo β</a> </div> </div> </section> </main> I focus on [e
Hereβs a solid content structure for your GitHub Pages site ( tylerpalko.github.io ). You can adapt this for a personal portfolio, developer blog, or project hub. First impression & bio First impression & bio