Here's a guide to common HTML tags and their uses:
Structural Elements 🏗️
<html>
: The root element of an HTML document<head>
: Contains meta information and document title<body>
: Main content area of the webpage
Text Formatting 📝
<h1>
to<h6>
: Headings with decreasing size<p>
: Paragraph text<strong>
: Bold text (semantic emphasis)
Multimedia Elements 🖼️
<img>
: Embed images<audio>
: Audio playback<video>
: Video embedding
For more details on HTML5 specifications, visit /en/reference/html5 🌐