HTML stands for HyperText Markup Language. It is the most widely used language on the web to develop web pages.
In late 1991, Tim Berners-Lee created HTML, but HTML 2.0 (1995) was the first standard version. HTML provides a way to display web pages that include text, images, and multimedia content.
HTML files are stored on a web server. When you want to visit a website, you enter the URL (Uniform Resource Locator) — the website’s address — into the browser’s address bar.
This is the root tag of every HTML page. HTML tags are keywords (called tag names) surrounded by angle brackets.
● HTML tags usually come in pairs like <html> and </html>
● The first tag is the start tag; the second tag is the end tag
● The end tag includes a forward slash (/) before the tag name
An HTML document has two main parts:
<head> element contains the title and metadata of the document.<body> element contains the content you want to display on the webpage.If it works, move to the next topic.