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…

Learn HTML – <marquee> Tag

Learn HTML – <marquee> Tag

Description The HTML <marquee> tag is used for scrolling piece of text or image displayed either horizontally across or vertically down your web site page depending on the settings. Example This is basic example of marquee The direction of text will be from bottom to top. Specific Attributes The HTML <marquee> tag also supports the…