Kids Coding

Build a Page

Headings, a list, and a link in the HTML editor. A page you can show someone.

KidsAdvancedBuild a Page

A page you can show someone

Use a heading, a short paragraph, a list, and a link. Open it in Try HTML.

Club page

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Fox Club</title>
</head>
<body>
  <h1>Fox Club</h1>
  <p>We meet on Fridays.</p>
  <h2>Bring</h2>
  <ul>
    <li>A notebook</li>
    <li>A snack</li>
  </ul>
  <p><a href="https://studygrid.in/kids">Kids coding</a></p>
</body>
</html>

Save the file with a .html ending and double-click it. Your browser opens the page. No server, no setup.

Structure

  • <!DOCTYPE html> tells the browser this is HTML.
  • h1 is the page title the visitor sees.
  • a href="..." is a link. The URL goes in href.

Real life

A birthday party invite you can actually send.

Title, when, what to bring, a link. A page, not a printout. Open it in Try HTML.

Party invite

<h1>Riley's party</h1>
<p>Saturday 3pm. Bring a hat.</p>
<ul>
  <li>Cake</li>
  <li>Games</li>
</ul>
<p><a href="/kids">Kids coding</a></p>

Change one word. Run it. That is how this idea shows up outside the lesson.

Try it

Exercise 1: Make a page with an h1 called My page and one link to /try.

Show solution
<h1>My page</h1>
<p><a href="/try">Try Python</a></p>

FAQ: Build a Page

Common questions about this page.

What is StudyGrid Kids?

StudyGrid Kids is a free coding path for children: Basic, Intermediate, and Advanced. Lessons use Python in the browser. No account and no install.

Should I run build a page examples locally for better learning?

Yes. Use the browser editor on StudyGrid for a quick check, then Download the example and run it on your computer. Local runs show real errors and the real toolchain, which is one of the fastest ways to learn build a page in this Kids Coding Python lesson (Build a Page).

Which kids level should we start with?

Start at Basic if the child has never written code. Choose Intermediate if they can print, use variables, and write a simple if. Choose Advanced if they already use loops and lists.

Do kids need an account or an app?

No. Kids pages are public. Code runs in the Try Python editor at /try. We do not ask children for a name or an email.

What language do kids learn?

Python, with a first HTML page in Intermediate and Advanced. After Advanced, the main Python tutorial is the next step.

Is the kids coding track free?

Yes. The Kids home, the three levels, and the Python editor on StudyGrid (studygrid.in) are free.