Introduction to HTML
HTML stands for HyperText Markup Language. It is the standard language used to create web pages.
<!DOCTYPE html> <html> <head> <title>My Website</title> </head> <body> <h1>Hello World</h1> </body> </html>