HTML is the structural roast of your website. It uses tags to tell the browser what is a heading, image, or button. Every page starts with a boilerplate.
<!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>
Opening tags, closing tags, and self-closing tags like <img>.
Order now for free delivery.
Use semantic tags like <header> and <footer> instead of just <div> to help screen readers.
Tags can go inside tags — like putting espresso (content) inside a cup (container).