HTML Basics
Start with fundamentals: elements, attributes, and document structure. Begin Tutorial
Welcome to html.sh! This guide will introduce you to HTML and help you understand what you’ll learn here.
HTML stands for HyperText Markup Language. It’s the standard language for creating web pages.
Here’s the simplest possible HTML:
That’s it! The <p> tag creates a paragraph. Try changing the text in the playground above.
HTML uses elements to describe content. An element typically has:
<p></p><p>This is a paragraph.</p>Some elements don’t need content or closing tags:
<br> <!-- Line break --><img src="photo.jpg" alt="A photo"> <!-- Image -->HTML Basics
Start with fundamentals: elements, attributes, and document structure. Begin Tutorial
Element Reference
Look up any HTML element with examples and explanations. Browse Elements
Ready to start learning? Here’s your recommended path:
Or jump straight to the A-Z Element Reference if you’re looking for something specific.