HTML elements are the building blocks of web pages. Each element has a start tag, content, and an end tag.
<!DOCTYPE html> <html> <head> <title>My Web Page</title> </head> <body> <h1>Hello, World!</h1> <p>This is a paragraph in HTML.</p> </body> </html>