HTML stands for Hyper Text Markup Language. It is the standard markup language used to create web pages and web content.
HTML is the foundation of every website. It tells the browser how to display text, images, links, tables, forms, and other elements on a webpage.
HTML is a markup language for creating web pages. It uses tags and elements to define different parts of a webpage. Browsers read HTML files and display them as web pages.
HTML elements are the building blocks of HTML pages.
Each element usually has an opening tag, content, and a closing tag.
Example: <p>Hello</p>
HTML tags are used to create elements.
Tags are written inside angle brackets such as <h1>, <p>, and <a>.
HTML was written by Tim Berners-Lee in 1991. It was developed to help people share and view information on the World Wide Web.
| Version | Year |
|---|---|
| HTML | 1991 |
| HTML 2.0 | 1995 |
| HTML 3.2 | 1997 |
| HTML 4.01 | 1999 |
| XHTML | 2000 |
| HTML 5 | 2014 |
<!DOCTYPE html> declaration defines the document as HTML5.<html> element is the root element of an HTML page.<head> element contains metadata and page information.<title> element sets the title of the webpage.<body> element contains visible page content.<h1> element defines the main heading.<p> element defines a paragraph.<meta> tag provides metadata like description, keywords, author, and language.HTML files can be created and edited using text editors or special HTML editors. Some editors also provide syntax highlighting, auto-complete, and preview features.
.html extension.A web browser reads HTML documents and displays the result as a webpage. The browser interprets the HTML code and shows the final page to the user.
HTML stands for?