HTML is like the LEGO bricks of the web! It helps us build websites by adding text, images, and links. 🏗️
<!DOCTYPE html> <html> <head> <title>My First Web Page</title> </head> <body> <h1>Welcome to HTML</h1> <p>This is a basic HTML page.</p> </body> </html>