Lesson 1: Introduction to HTML
HTML stands for Hypertext Markup Language. It is a markup language used to create web pages. An HTML file contains text, images, links, and other elements that are displayed on a web page.
HTML code is written using tags, which are enclosed in angle brackets like this: <tagname>. Tags are used to define different elements on a web page, such as headings, paragraphs, images, links, and more.
HTML documents are created using a text editor, such as Notepad, and saved with a .html file extension. To view an HTML document, you can open it in a web browser like Google Chrome, Firefox, or Safari.
Lesson 2: Basic HTML Document Structure
An HTML document consists of two main parts: the head and the body. The head contains information about the document, such as the document title and links to external stylesheets and scripts. The body contains the content that is displayed on the web page, such as text, images, and other elements.
Here is an example of a basic HTML document:
The <!DOCTYPE html> declaration at the beginning of the document tells the web browser that the document is an HTML5 document. The <html> tag marks the beginning of the HTML document, and the </html> tag marks the end.

