HTML
stands for HyperText Markup Language It's the standard markup language for creating web pages and web applications. HTML describes the structure of a web page semantically and originally included cues for the appearance of the document. With HTML, you can create headings, paragraphs, lists, links, images, tables, forms, and more, by using various tags and attributes.
The basic structure of an HTML
<!DOCTYPE html>
: This declaration is used to specify the HTML version being used. In modern HTML5 documents, it simply declares the document type as HTML5.<html>
: This element serves as the root element of the HTML document. All other elements are contained within this element.<head>
: The head element contains meta-information about the document, such as its title, character encoding, links to external resources (like CSS stylesheets or JavaScript files), and other metadata.<title>
: This element specifies the title of the document, which appears in the browser's title bar or tab.<body>
: The body element contains the content of the document that is displayed to the user, such as text, images, links, and other elements.
First program of html
<html>
<head>
<meta charset="UTF-8">
<title>My First Web Page</title>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is my first web page created with HTML!</p>
</body>
</html>
THANKYOU
I hope you learned something from this blog