Introduction to HTML for Beginners
HTML stands for HyperText Markup Language. It is the standard markup language for
creating web pages.
Basic HTML Tags:
- <html>: The root element of an HTML page.
- <head>: Contains meta information about the document (like the title).
- <title>: Specifies a title for the HTML page.
- <body>: Defines the document's body, which contains the visible page content.
- <h1> to <h6>: Defines headings.
- <p>: Defines a paragraph.