How to Use Different HTML tags in a Webpage | Lecture : 02. In this tutorial we will learn how we can use different HTML tags during a webpage creation. How we can use formatting in a webpage with different HTML tags. Details of tags are given below.
Review of Lecture No : 01
HTML – Hyper Text Markup Language
CSS – Cascading Style Sheet
JS – Stands for – Java scripting
PHP – Old – Personal Home Page.
PHP – New – hyper text preprocessor.
MySQL – Structure Query Language
SQLI – Structure Query Language improved.

Lecture No: 02 Agenda
- What is break tag and how we can use them.
- What is paragraph tag and its uses.
- How to defines headings in HTML.
- How to use Heading tag.
- What is listing and Types of Listing tag.
1.Ordered list
2.un-ordered list - What is marquee tag and how to use marquee tag.
What Marquee Tag.
HTML marquee is a scrolling piece of text displayed either horizontally across or vertically down your webpage depending on the settings. This is created by using HTML <marquees> tag.
Note − The <marquee> tag deprecated in HTML5. Do not use this element, instead you can use JavaScript and CSS to create such effects.
Complete Coding of Lecture No : 02
<html> <head> <title>Online Rozgaar Program Lecture 02</title> </head> <body> <h1>What is break tag and how we can use them.</h1> Hypertext Markup Language (HTML) <br> is the standard markup language for documents <br> designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript. <h1>Paragraph Tag</h1> <p> Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript. </p> <h1>Heading in HTML</h1> <h1> I love Islam and Pakistan </h1> <h2> I love Islam and Pakistan </h2> <h3> I love Islam and Pakistan </h3> <h4> I love Islam and Pakistan </h4> <h5> I love Islam and Pakistan </h5> <h6> I love Islam and Pakistan </h6> <h1>What is listing and Types of Listing tag.</h1> <marquee><h2>Ordered list </h2></marquee> <h2>1.Ordered list </h2> <ol> <li>Ice Cream</li> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> <marquee><h2> Un-ordered list </h2></marquee> <h2>2.un-ordered list </h2> <ul> <li>Ice Cream</li> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> </body> </html>
Download : Online Rozgaar – What is HTML, CSS, JS, PHP and SQLI