How to Use HTML
HTML (Hypertext Markup Language) is used to structure and display content on the web. To use HTML, follow these steps:
Here is a simple example of HTML code that creates a webpage with a header and a paragraph:
php
Copy code
<!DOCTYPE html> <html> <head> <title>My First HTML Page</title> </head> <body> <h1>Hello World!</h1> <p>This is my first HTML page.</p> </body> </html>