Documentation

Student-friendly HTML, CSS, and JavaScript reference with examples

Sections

HTML Body Element

The <body> element contains all the visible content on your webpage - text, buttons, images, forms, everything users see.

<body>
  <h1>Welcome</h1>
  <p>This is a paragraph</p>
  <button>Click me</button>
</body>

Everything inside the body tags will appear on the page.