23/09/2024
HTML PART - 1
===============================
đ What is HTML?
đ HTML stands for Hyper Text Markup Language
đ HTML is the standard markup language for creating Web pages
đ HTML describes the structure of a Web page
đ HTML consists of a series of elements
đ HTML elements tell the browser how to display the content
đ HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
==================================
Page Title
My First Heading
My first paragraph.
===================================
Example Explained
----------------------
đ The declaration defines that this document is an HTML5 document
đ The element is the root element of an HTML page
đ The element contains meta information about the HTML page
đ The element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)
đ The element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
đ The element defines a large heading
đ The element defines a paragraph