Module 1 – Introduction to HTML

Lecture 1: What is HTML? <!DOCTYPE html><html> <head> <title>Page Title</title> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> </body></html> Lecture 2: Basic HTML Tags Lecture 3: Creating a Simple Webpage <!DOCTYPE html><html> <head> <title>My First Webpage</title> </head> <body> <h1>Welcome to My Webpage</h1> <p>This is my first paragraph.</p> </body></html> <h2>About Me</h2><p>Hello! I am learning…