Beginner 8 lessons · 4 hours

Lesson 1: What is the Web?

Understanding how the internet works before writing your first line of code.

How the Web Works

The World Wide Web is a system of interlinked documents and resources accessed via the internet. When you type a URL into your browser, here's what happens:

  1. DNS Lookup: Your browser translates the domain name (like a2zlessons.com) into an IP address
  2. HTTP Request: Your browser sends a request to the server at that IP address
  3. Server Response: The server sends back HTML, CSS, and JavaScript files
  4. Rendering: Your browser assembles these files into the page you see

The Three Languages of the Web

Every website is built with three core technologies:

  • HTML (HyperText Markup Language) — The structure and content of a page
  • CSS (Cascading Style Sheets) — The visual styling and layout
  • JavaScript — The behavior and interactivity

Think of it like building a house: HTML is the walls and rooms, CSS is the paint and furniture, and JavaScript is the electricity and plumbing.

Your First HTML

Here's the simplest possible web page:

HTML <!DOCTYPE html> <html lang="en"> <head> <title>My First Page</title> </head> <body> <h1>Hello, World!</h1> <p>This is my first web page.</p> </body> </html>

Every HTML document starts with <!DOCTYPE html> to tell the browser it's an HTML5 document. The <html> element wraps everything, <head> contains metadata, and <body> contains what you see on screen.

Tools You'll Need

To follow along with this course, you'll need:

  • A text editor — We recommend Visual Studio Code (free)
  • A web browser — Chrome, Firefox, or Edge with developer tools
  • Curiosity and willingness to experiment!

Quick Quiz: Check Your Understanding

Which technology controls the visual appearance of a web page?

HTML
CSS
JavaScript
SQL

Explore the Grande Web Network

Word Tools

A2Z Word Finder Scrabble & word game helper
iWordFinder Quick word finder
Letters Into Words Unscramble letters
Word Unscrambler AI word solver
A2Z Dictionary Word definitions

Games & Puzzles

A2Z Arcade 33 free HTML5 games
A2Z Trivia 15 quiz categories
A2Z Mahjong Classic tile matching
Puzz Multiplayer word games
PuzzleDepot 45,000+ puzzles
CrossBingo Word bingo fun
Frame Games Rebus puzzles
Wunzzles Visual word puzzles

Learn & Explore

iFindWines AI wine pairing
A2Z Lessons Vocabulary & learning
Wordle Wonk Daily Wordle answers
A2Z News Word game news
A2Z Memes Gaming humor
AllIQTests Brain training

Powered by Grande Web Network