Smallest possible web business file

Hi World.

A folder with one index.html file can become the front door of a business. This layer proves the route opens before adding QR, flyer, app, checkout, or delivery-room logic.

Create this file

index.html

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>My First Business Page</title>
</head>
<body>
  <h1>Hi World</h1>
  <p>This is my first hosted business page.</p>
</body>
</html>

Proof checklist

No 404 before promotion.

Open the file locally. Then open it from a hosted route. If it loads, the student understands the foundation: an index file, a folder, and a working link.

python3 codee.py course-smoke ./hello-world-course