HTML


Beginners To Experts


The site is under development.

Basics

  • HTML stands for Hyper Text Markup Language.
  • It is a standardized markup language that is used to create web pages.
  • It uses tags to structure content.
  • An HTML document starts with <!DOCTYPE html> and includes <html> , <head> , and <body> elements.

Example


Document Structure:

Defines the basic structure of an HTML document.
It includes tags like < html > , < head>, and < body>

Text Formatting

HTML provides tags for text formatting such as headings, paragraphs, bold, italics, and line breaks.

Example

Lists

HTML supports ordered and unordered lists using <ol> and <ul>, with list items represented by <li> tag.

Example

Links

  • Anchor tags <a> create hyperlinks.
  • Links can point to external websites or internal sections within a page.

Forms

Forms are created with <form>, containing input elements like text fields, radio buttons, checkboxes, and buttons.

Output

Tables:

HTML tables are structured with <table>, <tr> (table row), <td> (table data), and <th>(table header).

Example

Output

Name Age
John 25