Coding & Web DevelopmentBeginner3 sectionsUpdated May 26, 2026

HTML Essentials

The core tags that structure every web page, with examples.

Try it in the compiler

Page skeleton

Every HTML document starts with this structure.

html
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>My Page</title>
  </head>
  <body>
    <h1>Hello</h1>
  </body>
</html>

Text tags

TermMeaning
<h1> to <h6>Headings, largest to smallest
<p>A paragraph of text
<strong>Important (bold) text
<em>Emphasis (italic) text
<br>A line break
Tagshtmlweb

Practise the reference.

Open the compiler, paste one snippet, and change it until you understand what it does.

Open the compiler
Resources, free guides, blog, cheatsheets & tools · Teki-SL