Welcome to HTML Basics
HTML (Hypertext Markup Language) is the standard language for creating web pages. It describes the structure of webpages.
- HTML Documents: An HTML document is a file containing HTML code, typically with a .html extension.
- Elements: HTML elements are the building blocks of HTML. They are defined using tags, they define how the code written will be parsed. e.g., <p> and <form>.
- Attributes: Elements can have attributes that provide additional information, e.g., <a href="https://www.google.com">.
When any action is taken in a website, the HTML is then parsed into an HTTP request. Visit "/http" for more!