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):
3) Lists
Unordered List (ul):
- HTML = Structure
- CSS = Style
- JavaScript = Interaction
Ordered List (ol):
- Write HTML
- Open in browser
- 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) |