Free Preview

See What You'll Learn — Week 1 Preview

This is a real sample from the full 12-week TeachToTech Bootcamp. See exactly what Day 1 through Day 5 looks like — including a live lesson excerpt and the project you'll ship.

Week 1 of 12

From Classroom to Code

Your First Week in Tech — orientation, foundations, and your first shipped project.

1

Day 1: The EdTech Landscape & Your Place In It

Readings

Readings + guided reflection exercise

2

Day 2: HTML Foundations — Build Your First Web Page

Hands-on

Hands-on coding intro — write real HTML today

3

Day 3: CSS Basics — Making It Look Good

Styling

Styling exercise — colour, typography, layout

4

Day 4: Your Pedagogical Superpower

Workshop

Workshop connecting teaching skills to tech roles

5

Day 5: Week 1 Portfolio Project

Project

Build a simple personal homepage — your first shipped project

Sample Lesson Excerpt

Day 2: HTML Foundations

Build Your First Web Page — Hands-on coding intro

Every web page you've ever visited — your school's parent portal, Google Classroom, Khan Academy — is built from the same three ingredients: HTML, CSS, and JavaScript. Today you're going to write HTML for the very first time. Not read about it. Not watch a video of someone else writing it. You're going to write it yourself, open it in a browser, and see it render.

HTML stands for HyperText Markup Language. Think of it as the skeleton of a web page — it defines what exists on the page (a heading, a paragraph, an image, a link) without saying anything about how it looks. That's CSS's job, which you'll tackle in Day 3. For today, we're focused on structure: creating a file, writing a few tags, and understanding why every element has an opening tag like <h1> and a closing tag like </h1>.

Here's something teachers grasp immediately that trips up non-educators: HTML is about meaning, not appearance. A <h1> tag doesn't just make text big — it tells the browser (and screen readers, and Google) that this text is the most important heading on the page. You already know how to sequence content for a learner. HTML is how you translate that instinct into a language a computer understands. By the end of today's exercise, you'll have a real .html file on your machine that opens in any browser — your first artifact as a developer.

index.html
Day 2 Exercise
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>My First Web Page</title>
  </head>
  <body>
    <h1>Hello, I'm a Teacher Turned Developer</h1>
    <p>I spent 8 years in the classroom. Now I'm learning to build
       the tools that power modern education.</p>
    <h2>What I Teach</h2>
    <ul>
      <li>5th grade mathematics</li>
      <li>Data literacy for young learners</li>
    </ul>
  </body>
</html>
Week 1 Portfolio Project

What You'll Build

Portfolio Project · Day 5

Your Personal Homepage

Shipped by end of Week 1

Using the HTML and CSS you've learned this week, you'll build a complete personal homepage that introduces you as a teacher-turned-developer. This isn't a toy exercise — it's the first artifact in your professional portfolio.

A headline introducing who you are
A short bio connecting teaching to tech
A list of your current learning goals
Styled with CSS — colors, fonts, spacing
Hosted live via GitHub Pages
Linked from your GitHub profile
Full 12-Week Curriculum

Weeks 2–12: Locked

Join the free beta (or enroll paid) to unlock the complete curriculum, sample lessons, and all 12 portfolio projects.

Week 1 — From Classroom to CodeUnlocked
Week 2JavaScript Fundamentals — Adding Logic to Your Pages
Week 3React & Component-Driven Development
Week 4Version Control & Collaborative Code
Week 5Python for EdTech Workflows
Week 6Data & Analytics Literacy for Educators
Week 7Instructional Design Technology
Week 8Learning Management Systems & APIs
Week 9Product Thinking for EdTech
Week 10Building & Shipping: Full-Stack Basics
Week 11Portfolio Building & Role Positioning
Week 12Capstone Project & Job-Readiness Sprint
Unlock Full Curriculum — Join Free Beta

No credit card required for beta access.

Ready to Start?

Your first lesson is waiting.

Join the free beta cohort to access Week 1 in full — and get early access to every module as it ships. Or enroll now for immediate paid access.