
What is an HTTP Server?
Think of an HTTP server as a waiter in a restaurant:
- You (browser) ask for something → HTTP Request
- Waiter (HTTP server) brings you what you asked for → HTTP Response
- The waiter can bring you food (HTML pages), drinks (JSON data), or anything else!
On ESP32:
- Your ESP32 becomes a web server
- You can access it from any browser on the same WiFi network
- You type
http://192.168.0.120in browser → ESP32 responds with a webpage!


