SlideShare a Scribd company logo
1 of 28
Session No 2

Developed by: Saif Ullah Dar

1/7/2014

1
1.
2.

3.
4.
5.
6.
7.

BR Tag
HR Tag
Headings
Order List Tags
Unordered List Tags
Blockquote Tag
Address Tag

Developed by: Saif Ullah Dar

1/7/2014

2
 Used

to control the line breaks.
 Use single spacing among the lines unlike <p>
tag that uses double spacing among the
paragraph.
 Does not have a closing braces.

Developed by: Saif Ullah Dar

1/7/2014

3
Developed by: Saif Ullah Dar

1/7/2014

4
Code Snippet To Fulfill the Requirement




This is should be the end of my first
paragraph in HTML.<br>

This should be the start of my second
paragraph in
 HTML.<br>


<p>And this is should be my third paragraph
in
 HTML.<br>


Developed by: Saif Ullah Dar

1/7/2014

5
Forces line break with one line spacing between two lines.

This is should be the end of my first
paragraph in HTML.<br>
This should be the start of my second
paragraph in
HTML.<br>
<p>And this is should be my third paragraph in
HTML.<br>

Developed by: Saif Ullah Dar

1/7/2014

6
 The

<HR> tag draws a horizontal line across
the page.
 It acts a paragraph break.
 There is no need to use the <BR> before or
after the <HR> tag.

Developed by: Saif Ullah Dar

1/7/2014

7
Developed by: Saif Ullah Dar

1/7/2014

8
Code Snippet To Fulfill the Requirement

This is should be the end of my first
paragraph in HTML.<hr>
This should be the start of my second
paragraph in
HTML.<hr>
And this is should be my third paragraph in
HTML.<hr>

Developed by: Saif Ullah Dar

1/7/2014

9
Draws a horizontal line across the page.

This is should be the end of my first
paragraph in HTML.<hr>
This should be the start of my second
paragraph in
HTML.<hr>
And this is should be my third paragraph in
HTML.<hr>

Developed by: Saif Ullah Dar

1/7/2014

10
1.

Color Attribute
How To
Use

<hr color=“red”>
<hr color=“blue”>
<hr color=“pink”>

Developed by: Saif Ullah Dar

1/7/2014

11
2.

Width Attribute
How To
Use

<hr width=“50%”>
<hr color=“blue” width=“100%”>
<hr width=“500”>
Default alignment
of HR is center.
Developed by: Saif Ullah Dar

1/7/2014

12
3.

Align Attribute
How To
Use

<hr align=“left” width=“50%”>
<hr align=“right” width=“50%”>
<hr align=“center”
width=“50%”>

Developed by: Saif Ullah Dar

1/7/2014

13
4.

Size Attribute
How To
Use

<hr size=“5”>
<hr size=“3” color=“red”>
<hr align=“center” width=“50%”
size=“2”>

Developed by: Saif Ullah Dar

1/7/2014

14
 To

add headings in the HTML document use
tag where, n represent number from 1 to 6.
<H1>

Some text here

</H1>

<H2>

Some text here

</H2>

<H3> Some text here

</H3>

<H4> Some text here

</H4>

<H5> Some text here

</H5>

<H6>

</H6>

Some text here

Developed by: Saif Ullah Dar

1/7/2014

15

<Hn>
A

common applications of HTML is to display
the list of items.
 The most popular types of lists that can be
created using HTML are:



Unordered List
Ordered List

Developed by: Saif Ullah Dar

1/7/2014

16



When the list of contents that you want to display don’t have to
follow any sequence then you can use Unordered list.
Each item in the unordered list is indented.
For Example, while creating list of Electronic products, where
sequence of occurrence does not matter.

<UL>

tag is used to create a Unordered list.

Developed by: Saif Ullah Dar

1/7/2014

17



When the list of contents that you want to display don’t have to
follow any sequence then you can use Unordered list.
Each item in the unordered list is indented.
For Example, while creating list of Electronic products, where
sequence of occurrence does not matter.

<LI>

tag identifies a item in the list.

Developed by: Saif Ullah Dar

1/7/2014

18
<HTML>
<BODY>
<H3>List of Electronic Products</H3>
<UL>
<LI>T.V.</LI>
<LI>VCD</LI>
<LI>DVD</LI>
<LI>REFRIGERATOR</LI>
<LI>WASHING MACHINE</LI>
<LI>MICRO OVEN</LI>
</UL>
</BODY>
</HTML>

Developed by: Saif Ullah Dar

1/7/2014

Check Out An
Example

19
Check Out The
Output

Developed by: Saif Ullah Dar

1/7/2014

20
When the list of contents that you want to display
have to follow a sequence.
 Each item in the ordered list is indented.
 For Example, creating a list of students based on
their merit.


<OL>

tag is used to create a Ordered list.

Developed by: Saif Ullah Dar

1/7/2014

21
Check Out
An Example
<HTML>
<BODY>
<H3>List of Fortune 500 Companies – Industry: Computers, Office Equipment
Year 2006 Survey </H3>
<OL>
<LI>IBM</LI>
<LI>HP</LI>
<LI>Dell</LI>
<LI>NEC</LI>
<LI>Fujitsu</LI>
<LI>Canon</LI>
</OL>
</BODY>
</HTML>

Developed by: Saif Ullah Dar

1/7/2014

22
Check Out
The
Output

Developed by: Saif Ullah Dar

1/7/2014

23
•
•

Used to include indented text in a
document.
Both the right and left margin are
indented.

Developed by: Saif Ullah Dar

1/7/2014

24
Sample Code

 Most

Popular Quote of Shakespeare :
<BLOCKQUOTE>
 To Be, Or Not To Be: That Is The Question
</BLOCKQUOTE>

Developed by: Saif Ullah Dar

1/7/2014

25
•
•
•

It defines text that gives an address or
other contact information.
It is displayed in italic.
Generally, displayed in the bottom of the
page.

Developed by: Saif Ullah Dar

1/7/2014

26
Sample Code

 IBM

stands for International Business
Machines.
 <hr color=“blue”>
 The Head Quarter is located at:
 <ADDRESS>
 IBM Armonk, <BR>New York, USA.
 </ADDRESS>

Developed by: Saif Ullah Dar

1/7/2014

27
SAIF ULLAH DAR

Developed by: Saif Ullah Dar

1/7/2014

28

More Related Content

Viewers also liked

C programming session 05
C programming session 05C programming session 05
C programming session 05Dushmanta Nath
 
C programming session 02
C programming session 02C programming session 02
C programming session 02Dushmanta Nath
 
C programming session 04
C programming session 04C programming session 04
C programming session 04Dushmanta Nath
 
C programming session 03
C programming session 03C programming session 03
C programming session 03Dushmanta Nath
 
C programming session 01
C programming session 01C programming session 01
C programming session 01Dushmanta Nath
 
Java script Session No 1
Java script Session No 1Java script Session No 1
Java script Session No 1Saif Ullah Dar
 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptAn Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptFahim Abdullah
 
C language (Collected By Dushmanta)
C language  (Collected By Dushmanta)C language  (Collected By Dushmanta)
C language (Collected By Dushmanta)Dushmanta Nath
 

Viewers also liked (9)

C programming session 05
C programming session 05C programming session 05
C programming session 05
 
C programming session 02
C programming session 02C programming session 02
C programming session 02
 
C programming session 04
C programming session 04C programming session 04
C programming session 04
 
C programming session 03
C programming session 03C programming session 03
C programming session 03
 
C programming session 01
C programming session 01C programming session 01
C programming session 01
 
Java script Session No 1
Java script Session No 1Java script Session No 1
Java script Session No 1
 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptAn Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java Script
 
Session 3 Java Script
Session 3 Java ScriptSession 3 Java Script
Session 3 Java Script
 
C language (Collected By Dushmanta)
C language  (Collected By Dushmanta)C language  (Collected By Dushmanta)
C language (Collected By Dushmanta)
 

Similar to Session no 2

Creating HTML Pages
Creating HTML PagesCreating HTML Pages
Creating HTML PagesMike Crabb
 
HTML5 Accessibility
HTML5 AccessibilityHTML5 Accessibility
HTML5 Accessibilitybgibson
 
Basics of html for web development by software outsourcing company india
Basics of html for web development   by software outsourcing company indiaBasics of html for web development   by software outsourcing company india
Basics of html for web development by software outsourcing company indiaJignesh Aakoliya
 
MCSL016 IGNOU SOLVED LAB MANUAL
MCSL016 IGNOU SOLVED LAB MANUALMCSL016 IGNOU SOLVED LAB MANUAL
MCSL016 IGNOU SOLVED LAB MANUALDIVYA SINGH
 
Html ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangaloreHtml ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangalorefathima12
 
ARIA_11_12_Practical_Perspective.pptx
ARIA_11_12_Practical_Perspective.pptxARIA_11_12_Practical_Perspective.pptx
ARIA_11_12_Practical_Perspective.pptxMarkSteadman7
 
Updated html programs
Updated html programsUpdated html programs
Updated html programsDeepali54
 
Html xhtml tag-sheet
Html xhtml tag-sheetHtml xhtml tag-sheet
Html xhtml tag-sheetDaniel Downs
 
Basic html tutorial
Basic html tutorialBasic html tutorial
Basic html tutorialDeep Gates
 
Basic html tutorial
Basic html tutorialBasic html tutorial
Basic html tutorialrocket981
 
Basic html tutorial
Basic html tutorialBasic html tutorial
Basic html tutorialRavi Rajput
 
Basic html tutorial for developing a website by za3mi
Basic html tutorial for developing a website by za3miBasic html tutorial for developing a website by za3mi
Basic html tutorial for developing a website by za3miShahzad Zaman
 

Similar to Session no 2 (20)

Session no 1
Session no 1Session no 1
Session no 1
 
Session no 1 html
Session no 1 htmlSession no 1 html
Session no 1 html
 
Html
HtmlHtml
Html
 
Session no 3
Session no 3Session no 3
Session no 3
 
Html basics
Html basicsHtml basics
Html basics
 
Creating HTML Pages
Creating HTML PagesCreating HTML Pages
Creating HTML Pages
 
Learning html & dhtml
Learning html & dhtmlLearning html & dhtml
Learning html & dhtml
 
HTML5 Accessibility
HTML5 AccessibilityHTML5 Accessibility
HTML5 Accessibility
 
Basics of html for web development by software outsourcing company india
Basics of html for web development   by software outsourcing company indiaBasics of html for web development   by software outsourcing company india
Basics of html for web development by software outsourcing company india
 
MCSL016 IGNOU SOLVED LAB MANUAL
MCSL016 IGNOU SOLVED LAB MANUALMCSL016 IGNOU SOLVED LAB MANUAL
MCSL016 IGNOU SOLVED LAB MANUAL
 
Html ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangaloreHtml ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangalore
 
ARIA_11_12_Practical_Perspective.pptx
ARIA_11_12_Practical_Perspective.pptxARIA_11_12_Practical_Perspective.pptx
ARIA_11_12_Practical_Perspective.pptx
 
Updated html programs
Updated html programsUpdated html programs
Updated html programs
 
Html xhtml tag-sheet
Html xhtml tag-sheetHtml xhtml tag-sheet
Html xhtml tag-sheet
 
WDD
WDDWDD
WDD
 
Double Loop
Double LoopDouble Loop
Double Loop
 
Basic html tutorial
Basic html tutorialBasic html tutorial
Basic html tutorial
 
Basic html tutorial
Basic html tutorialBasic html tutorial
Basic html tutorial
 
Basic html tutorial
Basic html tutorialBasic html tutorial
Basic html tutorial
 
Basic html tutorial for developing a website by za3mi
Basic html tutorial for developing a website by za3miBasic html tutorial for developing a website by za3mi
Basic html tutorial for developing a website by za3mi
 

Recently uploaded

Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 

Recently uploaded (20)

Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 

Session no 2

  • 1. Session No 2 Developed by: Saif Ullah Dar 1/7/2014 1
  • 2. 1. 2. 3. 4. 5. 6. 7. BR Tag HR Tag Headings Order List Tags Unordered List Tags Blockquote Tag Address Tag Developed by: Saif Ullah Dar 1/7/2014 2
  • 3.  Used to control the line breaks.  Use single spacing among the lines unlike <p> tag that uses double spacing among the paragraph.  Does not have a closing braces. Developed by: Saif Ullah Dar 1/7/2014 3
  • 4. Developed by: Saif Ullah Dar 1/7/2014 4
  • 5. Code Snippet To Fulfill the Requirement   This is should be the end of my first paragraph in HTML.<br> This should be the start of my second paragraph in  HTML.<br>  <p>And this is should be my third paragraph in  HTML.<br>  Developed by: Saif Ullah Dar 1/7/2014 5
  • 6. Forces line break with one line spacing between two lines. This is should be the end of my first paragraph in HTML.<br> This should be the start of my second paragraph in HTML.<br> <p>And this is should be my third paragraph in HTML.<br> Developed by: Saif Ullah Dar 1/7/2014 6
  • 7.  The <HR> tag draws a horizontal line across the page.  It acts a paragraph break.  There is no need to use the <BR> before or after the <HR> tag. Developed by: Saif Ullah Dar 1/7/2014 7
  • 8. Developed by: Saif Ullah Dar 1/7/2014 8
  • 9. Code Snippet To Fulfill the Requirement This is should be the end of my first paragraph in HTML.<hr> This should be the start of my second paragraph in HTML.<hr> And this is should be my third paragraph in HTML.<hr> Developed by: Saif Ullah Dar 1/7/2014 9
  • 10. Draws a horizontal line across the page. This is should be the end of my first paragraph in HTML.<hr> This should be the start of my second paragraph in HTML.<hr> And this is should be my third paragraph in HTML.<hr> Developed by: Saif Ullah Dar 1/7/2014 10
  • 11. 1. Color Attribute How To Use <hr color=“red”> <hr color=“blue”> <hr color=“pink”> Developed by: Saif Ullah Dar 1/7/2014 11
  • 12. 2. Width Attribute How To Use <hr width=“50%”> <hr color=“blue” width=“100%”> <hr width=“500”> Default alignment of HR is center. Developed by: Saif Ullah Dar 1/7/2014 12
  • 13. 3. Align Attribute How To Use <hr align=“left” width=“50%”> <hr align=“right” width=“50%”> <hr align=“center” width=“50%”> Developed by: Saif Ullah Dar 1/7/2014 13
  • 14. 4. Size Attribute How To Use <hr size=“5”> <hr size=“3” color=“red”> <hr align=“center” width=“50%” size=“2”> Developed by: Saif Ullah Dar 1/7/2014 14
  • 15.  To add headings in the HTML document use tag where, n represent number from 1 to 6. <H1> Some text here </H1> <H2> Some text here </H2> <H3> Some text here </H3> <H4> Some text here </H4> <H5> Some text here </H5> <H6> </H6> Some text here Developed by: Saif Ullah Dar 1/7/2014 15 <Hn>
  • 16. A common applications of HTML is to display the list of items.  The most popular types of lists that can be created using HTML are:   Unordered List Ordered List Developed by: Saif Ullah Dar 1/7/2014 16
  • 17.   When the list of contents that you want to display don’t have to follow any sequence then you can use Unordered list. Each item in the unordered list is indented. For Example, while creating list of Electronic products, where sequence of occurrence does not matter. <UL> tag is used to create a Unordered list. Developed by: Saif Ullah Dar 1/7/2014 17
  • 18.   When the list of contents that you want to display don’t have to follow any sequence then you can use Unordered list. Each item in the unordered list is indented. For Example, while creating list of Electronic products, where sequence of occurrence does not matter. <LI> tag identifies a item in the list. Developed by: Saif Ullah Dar 1/7/2014 18
  • 19. <HTML> <BODY> <H3>List of Electronic Products</H3> <UL> <LI>T.V.</LI> <LI>VCD</LI> <LI>DVD</LI> <LI>REFRIGERATOR</LI> <LI>WASHING MACHINE</LI> <LI>MICRO OVEN</LI> </UL> </BODY> </HTML> Developed by: Saif Ullah Dar 1/7/2014 Check Out An Example 19
  • 20. Check Out The Output Developed by: Saif Ullah Dar 1/7/2014 20
  • 21. When the list of contents that you want to display have to follow a sequence.  Each item in the ordered list is indented.  For Example, creating a list of students based on their merit.  <OL> tag is used to create a Ordered list. Developed by: Saif Ullah Dar 1/7/2014 21
  • 22. Check Out An Example <HTML> <BODY> <H3>List of Fortune 500 Companies – Industry: Computers, Office Equipment Year 2006 Survey </H3> <OL> <LI>IBM</LI> <LI>HP</LI> <LI>Dell</LI> <LI>NEC</LI> <LI>Fujitsu</LI> <LI>Canon</LI> </OL> </BODY> </HTML> Developed by: Saif Ullah Dar 1/7/2014 22
  • 23. Check Out The Output Developed by: Saif Ullah Dar 1/7/2014 23
  • 24. • • Used to include indented text in a document. Both the right and left margin are indented. Developed by: Saif Ullah Dar 1/7/2014 24
  • 25. Sample Code  Most Popular Quote of Shakespeare : <BLOCKQUOTE>  To Be, Or Not To Be: That Is The Question </BLOCKQUOTE> Developed by: Saif Ullah Dar 1/7/2014 25
  • 26. • • • It defines text that gives an address or other contact information. It is displayed in italic. Generally, displayed in the bottom of the page. Developed by: Saif Ullah Dar 1/7/2014 26
  • 27. Sample Code  IBM stands for International Business Machines.  <hr color=“blue”>  The Head Quarter is located at:  <ADDRESS>  IBM Armonk, <BR>New York, USA.  </ADDRESS> Developed by: Saif Ullah Dar 1/7/2014 27
  • 28. SAIF ULLAH DAR Developed by: Saif Ullah Dar 1/7/2014 28