What is HTML
💥 HTML is the standard markup language for creating web pages.
💥HTML stands for "Hyper Text Markup Languages".
💥HTML describe the structure of a web page.
💥HTML consist of a series of elements.
💥HTML elements tell the browser how to display the content.
💥HTML elements are represented by tag.
💥HTML tages label pieces of content such as "table", "heading", "paragraph" and soon.
💥Browsers do not display the html tags, but use them to render the content of the page.
👉THUMNAIL
<html> = The elements is the root elements of an html tags.
<head> = The elements contains meta information about the document.
<title></title> = The elements specifies a title for the document.
</head>
<body> = The elements contains the visible page content.
</body>
</html>
*Note some tag are closing tag like:<input> tag;
0 Comments