Welcome to the HTML tutorial! HTML, or HyperText Markup Language, is the standard markup language for documents designed to be displayed in a web browser. With HTML, you can create and structure sections, paragraphs, headings, links, and other elements on your web pages.

HTML Basics

Here is a simple example of HTML structure:

<!DOCTYPE html>
<html>
<head>
  <title>Page Title</title>
</head>
<body>

  <h1>This is a Heading</h1>
  <p>This is a paragraph.</p>
  <a href="/en/technical/css-tutorial">Learn CSS</a>

</body>
</html>

Elements

  • <html>: The root element of an HTML page.
  • <head>: Contains meta-information about the document.
  • <title>: Specifies the title of the document.
  • <body>: Contains the content of the document.
  • <h1> to <h6>: Defines headings from the largest to the smallest.
  • <p>: Defines a paragraph.

Links

To create a link, use the <a> tag:

<a href="https://www.example.com">This is a link</a>

Images

To include an image, use the <img> tag:

<img src="image.jpg" alt="Description of the image">

Image Example

Here is an example of an image in the document:

(center) Puppy (endcenter)

Next Steps

If you are ready to dive deeper into HTML, check out our CSS tutorial to learn how to style your web pages.


Note: This tutorial assumes you are using English as the language style. If you have any specific questions or need further assistance, please feel free to reach out to our support team at support@example.com.