Here's a guide to common HTML tags and their uses:

Structural Elements 🏗️

  • <html>: The root element of an HTML document
    html_tag
  • <head>: Contains meta information and document title
    head_tag
  • <body>: Main content area of the webpage
    body_tag

Text Formatting 📝

  • <h1> to <h6>: Headings with decreasing size
    heading_tag
  • <p>: Paragraph text
    paragraph_tag
  • <strong>: Bold text (semantic emphasis)
    strong_tag

Multimedia Elements 🖼️

  • <img>: Embed images
    image_tag
  • <audio>: Audio playback
    audio_tag
  • <video>: Video embedding
    video_tag

For more details on HTML5 specifications, visit /en/reference/html5 🌐