Basic Structure of an HTML Document

Himmat Kumar Apr 5, 2025, 12:40 PM
HTML
Views 1199
Blog Thumbnail

Each webpage on the internet begins with a basic HTML document or webpage. For us to utilize a browser, it is important to understand the life-giving anatomy structure of an HTML document.

HTML Document Building Blocks

πŸ—‚οΈ Doctype Declaration

This tag tells the web browser what version of HTML to expect in this document.

<!DOCTYPE html>

πŸ“¦ HTML Tag

The starting piece of any HTML document, at its core it's where every other component is nested.

<html lang="en">

  <!-- Everything goes here -->

</html>

πŸ‘‘ Head Section

It contains HTML meta tags along with the title of the webpage for indexing. By default, the title will be displayed on the top of the window.

🧍 Body Section

The Body Section usually contains the main content of the page such as headings, paragraphs, images, links etc.

<body>
  <h1>Hello World!</h1>
  <p>This is my first webpage.</p>
</body>

πŸ“ƒ Full Example

Showing only the β€œHello World!” example.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Welcome to My Web Page</title>
  </head>
  <body>
    <h1>Welcome to My Web Page</h1>
    <p>This is a basic HTML document structure.</p>
  </body>
</html>

πŸš€ Summary

With this basic structure you can create a snippet or a full website. In the end, having full control over your content is the key.

Comments

Please login to leave a comment.

No comments yet.

Related Posts

html-tables-for-data-guide
1100 viewsHTML
Himmat Regar β€’ Jun 2, 2025, 6:54 PM

HTML Tables for Data β€” Not Layout! Semantics, Accessibi...

responsive-meta-seo-friendly-markup-2025
448 viewsHTML
Himmat Regar β€’ Jun 23, 2025, 4:23 PM

Mastering Responsive Meta & SEO-Friendly Markup in 2025

html-tags
449 viewsHTML
Himmat Kumar β€’ Oct 19, 2023, 2:45 AM

HTML Tags

hyperlinks-and-media-embedding-2025
504 viewsHTML
Himmat Regar β€’ Jun 23, 2025, 4:37 PM

Hyperlinks & Media: Embedding Content the Right Way in ...

html-performance-tricks-2025
1134 viewsHTML
Himmat Regar β€’ Jun 2, 2025, 7:02 PM

HTML Performance Tricks 2025 – Preload, Async/Defer, Cr...

html-attributes-guide
227 viewsHTML
Himmat Kumar β€’ Aug 18, 2024, 10:58 PM

Understanding HTML Attributes: A Beginner's Guide

glassmorphism-login-form
245 viewsHTML
Himmat Kumar β€’ Mar 4, 2025, 1:15 AM

Glassmorphism Login Form: A Modern Design Tutorial

html-paragraph-tag-guide
1248 viewsHTML
Himmat Kumar β€’ Apr 8, 2025, 1:50 PM

HTML Paragraph Tag – Complete Guide with Examples

html-seo-faq-2025
457 viewsHTML
Himmat Regar β€’ Jun 23, 2025, 4:41 PM

HTML & SEO FAQ 2025: Answers to the Web’s Most-Asked Qu...

html-headings-guide
243 viewsHTML
Himmat Kumar β€’ Aug 18, 2024, 11:31 PM

Understanding HTML Headings: A Simple Guide