Basic structure of an HTML document

0
5KB

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
Rechercher
Catégories
Lire la suite
Computer Programming
HTML Table Sizes: Controlling Dimensions
HTML tables can be sized using the width and height attributes, which specify the dimensions of...
Par HTML PROGRAMMING LANGUAGE 2024-09-06 01:29:20 0 6KB
Éducation
Interactive Learning Boosts Retention by 75%
Did You Know? Interactive Learning Boosts Retention by 75%! Engage with Your Studies and See the...
Par Olaim 2024-07-21 19:12:20 0 10KB
Éducation
S.4 SOLUTIONS TO THE PHYSICS SEMINAR QUESTIONS
S.4 SOLUTIONS TO THE PHYSICS SEMINAR QUESTIONS
Par Expedito 2024-07-26 17:07:09 0 6KB
Éducation
MODERN AFRICAN NATIONAL HISTORY MADE EASY
https://acrobat.adobe.com/id/urn:aaid:sc:EU:4838a935-5393-417a-a9b9-a4c21d6109cb
Par Expedito 2024-07-18 10:47:57 0 6KB
Computer Programming
Intro to Classes and Objects python Show drafts
Classes: The Blueprints Imagine you're building a house. You wouldn't just start hammering and...