Hello World!

This page demonstrates the basic structure of an HTML document and common tags.

1) Essential Structure

The most important parts of an HTML page are: <html>, <head>, and <body>.

The browser can be forgiving, but we write clean and correct structure.


This is a line break example:
This text appears on the next line.

2) Links and Images

This is a link: Visit sarjpos.com

This is an image (example placeholder):

Sample placeholder image

3) Lists

Unordered List (ul):

Ordered List (ol):

  1. Write HTML
  2. Open in browser
  3. Improve step by step

4) Div and Span

This is a span inside a div.

Use div to group blocks of content and span to style small parts of text.

5) Tables

Technology Purpose
HTML Structure (content and layout skeleton)
CSS Style (colors, spacing, fonts)
JavaScript Interaction (buttons, dynamic behavior)

6) Forms (Basic)