Web Development Basic HTML Resource Page!

This page provides basic explanations and examples of HTML elements.

1. Headings

HTML provides six levels of headings, which are <h1> through <h6>.

This is a H1 Heading

This is a H2 Heading

This is a H3 Heading

This is a H4 Heading

This is a H5 Heading
This is a H6 Heading

2. Paragraphs

The <p> tag defines a paragraph.

This is a simple paragraph.

3. Links

Links are defined with the <a> tag.

This is a link to example.com

4. Lists

HTML provides ordered (numbered) and unordered (bulleted) lists.

Unordered List:

Ordered List:

  1. First item
  2. Second item
  3. Third item

5. Images

Images can be embedded into web pages using the <img> tag.

Description of Image

Always remember to include an alt attribute for accessibility!