Batch 001 learning modules
Course cards load from BATCH_001/batch001-catalog.json over HTTP; opening the dashboard as a local file falls back to the same list embedded in this page. Tracks tagged creative coding appear in their own row.
Select a course to start your journey.
Course cards load from BATCH_001/batch001-catalog.json over HTTP; opening the dashboard as a local file falls back to the same list embedded in this page. Tracks tagged creative coding appear in their own row.
Center a element within a container.
Unlock at level 2.
Think of HTML as the **structural roast** of your website. Without it, your site has no form. It uses "Tags" to tell the browser what is a heading, what is an image, and what is a button.
<!DOCTYPE html>
<html>
<head>
<title>My Coffee Shop</title>
</head>
<body>
<h1>Freshly Brewed Code</h1>
<p>Start your day with HTML.</p>
</body>
</html>
Hover over the pins to see the HTML tags in action.
Order now for free delivery.
Always use sematic tags like <header> and <footer> instead of just <div> to help screen readers understand your brew!
Tags can go inside tags. It's like putting your espresso (content) inside a cup (container).