Basic structure of an HTML document

0
5كيلو بايت

An HTML document is composed of two main sections: the head and the body.

The <head> Section

The <head> section contains metadata about the document, which is information about the document itself rather than content that will be displayed on the page. This includes:

  • Title: Defines the title of the document, which appears in the browser's title bar.
  • Meta tags: Provide additional information about the document, such as keywords, description, author, and character encoding.
  • Links to external stylesheets: Connect to CSS files for styling the page.
  • Scripts: Include JavaScript files for interactive elements.

HTML
<head>
  <title>My Web Page</title>
  <meta charset="UTF-8">
  <link rel="stylesheet" href="styles.css">
</head>

The <body> Section

The <body> section contains the visible content of the page, including:

  • Headings: Define the structure and importance of content (<h1> to <h6>).
  • Paragraphs: Contain regular text content (<p>).
  • Images: Display images (<img>).
  • Links: Create hyperlinks to other pages or resources (<a>).
  • Lists: Organize content into bulleted or numbered lists (<ul>, <ol>).
  • Divisions: Group content for styling or scripting purposes (<div>).

HTML
<body>
  <h1>Welcome to My Page</h1>
  <p>This is a paragraph.</p>
  <img src="image.jpg" alt="An image">
  <a href="https://example.com">Visit Example</a>
</body>

Complete HTML Structure

HTML
<!DOCTYPE html>
<html>
<head>
  <title>My Web Page</title>
  <meta charset="UTF-8">
</head>
<body>
  </body>
</html>

  • <!DOCTYPE html>: This declaration specifies the document type as HTML5.
  • <html></html>: This is the root element of an HTML document.

Note: While this is a basic structure, HTML offers many more elements and attributes to create complex and interactive web pages.

Love
1
البحث
الأقسام
إقرأ المزيد
Technology
Understanding the ROUND Function
The ROUND function in Excel is used to round a number to a specified number of decimal places....
بواسطة Microsoft Excel 2024-09-03 03:30:30 0 6كيلو بايت
Technology
Scenarios of Computer Misuse and Their Effects on Society
Computer misuse can have widespread and serious impacts on society. It encompasses a wide range...
بواسطة Olaim 2024-07-13 07:42:14 0 6كيلو بايت
Technology
Best Project Management Software for 2025: Features, Benefits & Reviews
In today’s fast-paced business environment, finding the best project management software is...
بواسطة emmasmith28 2025-03-03 06:35:30 0 5كيلو بايت
Wellness
Choosing Kindness in the Face of Anger: A Path to Transformation
Imagine standing at the crossroads of an emotional storm. Someone’s words or actions have...
بواسطة Olaim 2024-12-18 16:55:54 0 6كيلو بايت
Technology
Network topologies
Network topology refers to the arrangement of various elements (like nodes and links) in a...
بواسطة Patswe 2024-10-03 22:58:40 0 5كيلو بايت