SlideShare una empresa de Scribd logo
1 de 34
Session No 1

Developed by: Saif Ullah Dar

1/7/2014

1
1)
2)

3)
4)
5)
6)
7)
8)
9)

Getting Started With HTML
Introducing HTML
How Web pages work
Introduction to Tags.
Structure of HTML page
Creating a Web Page
Introduction table, tr, td tags.
Paragraphs
Preformatted Paragraphs

Developed by: Saif Ullah Dar

1/7/2014

2
 The

World Wide Web (Web) is a network of
information resources. The Web relies on
three mechanisms to make these resources
readily available to the widest possible
audience:




A uniform naming scheme for locating resources
on the Web (e.g., URIs).
Protocols, for access to named resources over
the Web (e.g., HTTP).
Hypertext, for easy navigation among resources
(e.g., HTML).

Developed by: Saif Ullah Dar

1/7/2014

3
To publish information for global distribution, one
needs a universally understood language, a kind of
publishing mother tongue that all computers may
potentially understand. The publishing language used
by the World Wide Web is HTML (from Hypertext
Markup Language).

Developed by: Saif Ullah Dar

1/7/2014

4
A. HTML contains special markers, or tags, which
B.

define the style and structure of the page
Tags are also referred to as elements.

Developed by: Saif Ullah Dar

1/7/2014

5
 Publish

online documents with
headings, texts, tables, lists, photos, etc.
 Retrieve online information via hypertexts
links.
 Design forms for conducting transactions
with remote services, for use in searching for
information, making reservations, ordering
products, etc.
 Include spread-sheets, video clips, sound
clips, and other applications directly in their
documents.
Developed by: Saif Ullah Dar

1/7/2014

6
Click To
Proceed With
The Steps

Developed by: Saif Ullah Dar

1/7/2014

7
Double Click
on the
Internet
Explorer
button

Developed by: Saif Ullah Dar

1/7/2014

8
Browser
Window
Opens

Developed by: Saif Ullah Dar

1/7/2014

9
http://www.google.com

Type the url
address &
Press Enter
Key

Developed by: Saif Ullah Dar

1/7/2014

10
Internet

Web Server

Request
Request

http://www.google.com

User makes a request
www.google.com

HTML files

Developed by: Saif Ullah Dar

1/7/2014

11
Internet

Web Server

Web Page
Web Page

HTML files
Google page is returned from the Web Server

Developed by: Saif Ullah Dar

1/7/2014

12
Developed by: Saif Ullah Dar

1/7/2014

13
 A tag is a reference in an HTML document which
describes the style and structure of the document.

 All tag start with < (less than symbol) and end with

> (greater than symbol)

 Tags which mark a beginning have no / (front
slash).
 Tags which mark an ending have a / immediately
after <, as in </.

Developed by: Saif Ullah Dar

1/7/2014

14
 <HTML>,

<BODY>
, <TITLE>
 </HTML>, </BODY
>, </TITLE>

Developed by: Saif Ullah Dar

 STARTING

TAGS /

ELEMENTS
 ENDING

TAGS /
ELEMENTS

1/7/2014

15
<HTML>
<HEAD>
<TITLE> My Home Page </TITLE>
</HEAD>
<!-- Written by Manas K Sahoo -->
<!-- Created: 30-May-2007 -->
<!-- Organization: IBM -->
<BODY>This is where the text goes.
</BODY>
</HTML>
Developed by: Saif Ullah Dar

1/7/2014

16
Start of an HTML document.

<HTML>
<HEAD>
<TITLE> My Home Page </TITLE>
</HEAD>
<!-- Written by Manas K Sahoo -->
<!-- Created: 30-May-2007 -->
<!-- Organization: IBM -->
<BODY>This is where the text goes.
</BODY>
</HTML>
Developed by: Saif Ullah Dar

1/7/2014

17
Indicates to the browser that this is an HTML
document.

<HTML>
<HEAD>
<TITLE> My Home Page </TITLE>
</HEAD>
<!-- Written by Manas K Sahoo -->
<!-- Created: 30-May-2007 -->
<!-- Organization: IBM -->
<BODY>This is where the text goes.
</BODY>
</HTML>
Developed by: Saif Ullah Dar

1/7/2014

18
HTML document is divided into two sections.
1. <HEAD> …. </HEAD>

<HTML>
<HEAD>
<TITLE> My Home Page </TITLE>
</HEAD>
<!-- Written by Manas K Sahoo -->
<!-- Created: 30-May-2007 -->
<!-- Organization: IBM -->
<BODY>This is where the text goes.
</BODY>
</HTML>
Developed by: Saif Ullah Dar

1/7/2014

19
HTML document is divided into two sections.
2. <BODY> …. </BODY>

<HTML>
<HEAD>
<TITLE> My Home Page </TITLE>
</HEAD>
<!-- Written by Manas K Sahoo -->
<!-- Created: 30-May-2007 -->
<!-- Organization: IBM -->
<BODY>This is where the text goes.
</BODY>
</HTML>
Developed by: Saif Ullah Dar

1/7/2014

20
Shows the contents in the browser title bar.
Generally placed inside Head tag.

<HTML>
<HEAD>
<TITLE> My Home Page </TITLE>
</HEAD>
<!-- Written by Manas K Sahoo -->
<!-- Created: 30-May-2007 -->
<!-- Organization: IBM -->
<BODY>This is where the text goes.
</BODY>
</HTML>
Developed by: Saif Ullah Dar

1/7/2014

21
Indicates comment tag. Can be placed anywhere
in the document.

<HTML>
<HEAD>
<TITLE> My Home Page </TITLE>
</HEAD>
<!-- Written by Manas K Sahoo -->
<!-- Created: 30-May-2007 -->
<!-- Organization: IBM -->
<BODY>This is where the text goes.
</BODY>
</HTML>
Developed by: Saif Ullah Dar

1/7/2014

22
Signal the end of HTML document.

<HTML>
<HEAD>
<TITLE> My Home Page </TITLE>
</HEAD>
<!-- Written by Manas K Sahoo -->
<!-- Created: 30-May-2007 -->
<!-- Organization: IBM -->
<BODY>This is where the text goes.
</BODY>
</HTML>
Developed by: Saif Ullah Dar

1/7/2014

23
Range / Container tags

They are called so because they cover a range of text.
Example : <HTML>, <HEAD>, <BODY>, <TITLE>

Standalone / Point tags
Those tags which do not need an ending.
Example: <HR>, <BR>

Developed by: Saif Ullah Dar

1/7/2014

24
Developed by: Saif Ullah Dar

1/7/2014

25


Tags used for separating one line with other can be
classifies as follows:1.

<P> tag

2.

<PRE> tag

3.

<BR> tag

4.

<HR> tag

Developed by: Saif Ullah Dar

1/7/2014

26
 Normally

all text in an HTML document is
treated like one long paragraph. Indented or
blank lines which normally indicate start of
paragraphs in text are ignored.
 To separate your text into paragraphs use the
 The <P> tag forces an end of line and forces
a blank line before the next paragraph.

Developed by: Saif Ullah Dar

1/7/2014

27

<P>
tag.
Developed by: Saif Ullah Dar

1/7/2014

28
Code Snippet To Fulfill the Requirement

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

Developed by: Saif Ullah Dar

1/7/2014

29
<p> tag forces an end of line and forces a blank line before the next paragraph.

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

Developed by: Saif Ullah Dar

1/7/2014

30
<p> tag forces an end of line and forces a blank line before the next paragraph.

<p>This is should be the end of my first
paragraph in HTML.</p>
<p>This should be the start of my second
paragraph in
HTML.</p>
<p>And this is should be my third paragraph in
HTML.</p>
Ends the paragraph tag.
Developed by: Saif Ullah Dar

1/7/2014

31
 Preformatted

tag is used to display the data
in the explorer as written in the Program.
 To use the tabs in the paragraphs
 This tag is used to place the data according
to your own style.
 The font size of this tag is different from the
font size of the <P> Tag
 Do not forget to close this Tag.

Developed by: Saif Ullah Dar

1/7/2014

32

<PRE>
tag.
Code Snippet To Fulfill the Requirement

<pre>This is should be the end of my first
Paragraph
in HTML Using the
PRE FORMATTED TAG.</pre>
<pre>This should be the start of my second
paragraph in
HTML.</pre>
<p>And this is should be my third paragraph in
HTML.</p>

Developed by: Saif Ullah Dar

1/7/2014

33
SAIF ULLAH DAR

Developed by: Saif Ullah Dar

1/7/2014

34

Más contenido relacionado

La actualidad más candente

Learn CSS From Scratch
Learn CSS From ScratchLearn CSS From Scratch
Learn CSS From Scratch
ecobold
 

La actualidad más candente (20)

Html bangla
Html banglaHtml bangla
Html bangla
 
Html basics-auro skills
Html basics-auro skillsHtml basics-auro skills
Html basics-auro skills
 
Bangla html
Bangla htmlBangla html
Bangla html
 
Html by tanbircox
Html by tanbircoxHtml by tanbircox
Html by tanbircox
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Html.ppt
Html.pptHtml.ppt
Html.ppt
 
Using HTML5 sensibly
Using HTML5 sensiblyUsing HTML5 sensibly
Using HTML5 sensibly
 
Khoa dang (kay)
Khoa dang (kay)Khoa dang (kay)
Khoa dang (kay)
 
Introduction to Html
Introduction to HtmlIntroduction to Html
Introduction to Html
 
HTML5
HTML5 HTML5
HTML5
 
Multimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audioMultimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audio
 
Web programming & design using internet by tanbircox
Web programming & design using internet by tanbircoxWeb programming & design using internet by tanbircox
Web programming & design using internet by tanbircox
 
Html and its future
Html and its futureHtml and its future
Html and its future
 
The Users are Restless
The Users are RestlessThe Users are Restless
The Users are Restless
 
How I learned to stop worrying and love the .htaccess file
How I learned to stop worrying and love the .htaccess fileHow I learned to stop worrying and love the .htaccess file
How I learned to stop worrying and love the .htaccess file
 
Html
HtmlHtml
Html
 
Html intro
Html introHtml intro
Html intro
 
Html tags describe in bangla
Html tags describe in banglaHtml tags describe in bangla
Html tags describe in bangla
 
HTML Lesson 1
HTML Lesson 1HTML Lesson 1
HTML Lesson 1
 
Learn CSS From Scratch
Learn CSS From ScratchLearn CSS From Scratch
Learn CSS From Scratch
 

Destacado (8)

Session no 2
Session no 2Session no 2
Session no 2
 
Session no 3
Session no 3Session no 3
Session no 3
 
Java script session 4
Java script session 4Java script session 4
Java script session 4
 
Session no 4
Session no 4Session no 4
Session no 4
 
Session no 3 bzu
Session no 3 bzuSession no 3 bzu
Session no 3 bzu
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
 
HTML: Tables and Forms
HTML: Tables and FormsHTML: Tables and Forms
HTML: Tables and Forms
 
HTML practicals
HTML practicals HTML practicals
HTML practicals
 

Similar a Session no 1

Comp 111chp iv vi
Comp 111chp iv viComp 111chp iv vi
Comp 111chp iv vi
Bala Ganesh
 
Web Development From the Ground Up, a Series for Novice ...
Web Development From the Ground Up, a Series for Novice ...Web Development From the Ground Up, a Series for Novice ...
Web Development From the Ground Up, a Series for Novice ...
webhostingguy
 

Similar a Session no 1 (20)

Web design and Development
Web design and DevelopmentWeb design and Development
Web design and Development
 
HyperTextMarkupLanguage.ppt
HyperTextMarkupLanguage.pptHyperTextMarkupLanguage.ppt
HyperTextMarkupLanguage.ppt
 
INTRODUCTION FOR HTML
INTRODUCTION  FOR HTML INTRODUCTION  FOR HTML
INTRODUCTION FOR HTML
 
HTML (Basic to Advance)
HTML (Basic to Advance)HTML (Basic to Advance)
HTML (Basic to Advance)
 
Html 5
Html 5Html 5
Html 5
 
Advance HTML
Advance HTMLAdvance HTML
Advance HTML
 
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
 
Html basics
Html basicsHtml basics
Html basics
 
Html basics
Html basicsHtml basics
Html basics
 
Html
HtmlHtml
Html
 
Web Design-III IT.ppt
Web Design-III IT.pptWeb Design-III IT.ppt
Web Design-III IT.ppt
 
HTML
HTMLHTML
HTML
 
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2
 
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdfHSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
 
Comp 111chp iv vi
Comp 111chp iv viComp 111chp iv vi
Comp 111chp iv vi
 
HTML and ASP.NET
HTML and ASP.NETHTML and ASP.NET
HTML and ASP.NET
 
SDP_HTML.pptx
SDP_HTML.pptxSDP_HTML.pptx
SDP_HTML.pptx
 
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCRDrupal7 Theming session on the occassion of  Drupal7 release party in Delhi NCR
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
 
Web Development From the Ground Up, a Series for Novice ...
Web Development From the Ground Up, a Series for Novice ...Web Development From the Ground Up, a Series for Novice ...
Web Development From the Ground Up, a Series for Novice ...
 
Html 5
Html 5Html 5
Html 5
 

Último

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Último (20)

Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 

Session no 1

  • 1. Session No 1 Developed by: Saif Ullah Dar 1/7/2014 1
  • 2. 1) 2) 3) 4) 5) 6) 7) 8) 9) Getting Started With HTML Introducing HTML How Web pages work Introduction to Tags. Structure of HTML page Creating a Web Page Introduction table, tr, td tags. Paragraphs Preformatted Paragraphs Developed by: Saif Ullah Dar 1/7/2014 2
  • 3.  The World Wide Web (Web) is a network of information resources. The Web relies on three mechanisms to make these resources readily available to the widest possible audience:    A uniform naming scheme for locating resources on the Web (e.g., URIs). Protocols, for access to named resources over the Web (e.g., HTTP). Hypertext, for easy navigation among resources (e.g., HTML). Developed by: Saif Ullah Dar 1/7/2014 3
  • 4. To publish information for global distribution, one needs a universally understood language, a kind of publishing mother tongue that all computers may potentially understand. The publishing language used by the World Wide Web is HTML (from Hypertext Markup Language). Developed by: Saif Ullah Dar 1/7/2014 4
  • 5. A. HTML contains special markers, or tags, which B. define the style and structure of the page Tags are also referred to as elements. Developed by: Saif Ullah Dar 1/7/2014 5
  • 6.  Publish online documents with headings, texts, tables, lists, photos, etc.  Retrieve online information via hypertexts links.  Design forms for conducting transactions with remote services, for use in searching for information, making reservations, ordering products, etc.  Include spread-sheets, video clips, sound clips, and other applications directly in their documents. Developed by: Saif Ullah Dar 1/7/2014 6
  • 7. Click To Proceed With The Steps Developed by: Saif Ullah Dar 1/7/2014 7
  • 10. http://www.google.com Type the url address & Press Enter Key Developed by: Saif Ullah Dar 1/7/2014 10
  • 11. Internet Web Server Request Request http://www.google.com User makes a request www.google.com HTML files Developed by: Saif Ullah Dar 1/7/2014 11
  • 12. Internet Web Server Web Page Web Page HTML files Google page is returned from the Web Server Developed by: Saif Ullah Dar 1/7/2014 12
  • 13. Developed by: Saif Ullah Dar 1/7/2014 13
  • 14.  A tag is a reference in an HTML document which describes the style and structure of the document.  All tag start with < (less than symbol) and end with > (greater than symbol)  Tags which mark a beginning have no / (front slash).  Tags which mark an ending have a / immediately after <, as in </. Developed by: Saif Ullah Dar 1/7/2014 14
  • 15.  <HTML>, <BODY> , <TITLE>  </HTML>, </BODY >, </TITLE> Developed by: Saif Ullah Dar  STARTING TAGS / ELEMENTS  ENDING TAGS / ELEMENTS 1/7/2014 15
  • 16. <HTML> <HEAD> <TITLE> My Home Page </TITLE> </HEAD> <!-- Written by Manas K Sahoo --> <!-- Created: 30-May-2007 --> <!-- Organization: IBM --> <BODY>This is where the text goes. </BODY> </HTML> Developed by: Saif Ullah Dar 1/7/2014 16
  • 17. Start of an HTML document. <HTML> <HEAD> <TITLE> My Home Page </TITLE> </HEAD> <!-- Written by Manas K Sahoo --> <!-- Created: 30-May-2007 --> <!-- Organization: IBM --> <BODY>This is where the text goes. </BODY> </HTML> Developed by: Saif Ullah Dar 1/7/2014 17
  • 18. Indicates to the browser that this is an HTML document. <HTML> <HEAD> <TITLE> My Home Page </TITLE> </HEAD> <!-- Written by Manas K Sahoo --> <!-- Created: 30-May-2007 --> <!-- Organization: IBM --> <BODY>This is where the text goes. </BODY> </HTML> Developed by: Saif Ullah Dar 1/7/2014 18
  • 19. HTML document is divided into two sections. 1. <HEAD> …. </HEAD> <HTML> <HEAD> <TITLE> My Home Page </TITLE> </HEAD> <!-- Written by Manas K Sahoo --> <!-- Created: 30-May-2007 --> <!-- Organization: IBM --> <BODY>This is where the text goes. </BODY> </HTML> Developed by: Saif Ullah Dar 1/7/2014 19
  • 20. HTML document is divided into two sections. 2. <BODY> …. </BODY> <HTML> <HEAD> <TITLE> My Home Page </TITLE> </HEAD> <!-- Written by Manas K Sahoo --> <!-- Created: 30-May-2007 --> <!-- Organization: IBM --> <BODY>This is where the text goes. </BODY> </HTML> Developed by: Saif Ullah Dar 1/7/2014 20
  • 21. Shows the contents in the browser title bar. Generally placed inside Head tag. <HTML> <HEAD> <TITLE> My Home Page </TITLE> </HEAD> <!-- Written by Manas K Sahoo --> <!-- Created: 30-May-2007 --> <!-- Organization: IBM --> <BODY>This is where the text goes. </BODY> </HTML> Developed by: Saif Ullah Dar 1/7/2014 21
  • 22. Indicates comment tag. Can be placed anywhere in the document. <HTML> <HEAD> <TITLE> My Home Page </TITLE> </HEAD> <!-- Written by Manas K Sahoo --> <!-- Created: 30-May-2007 --> <!-- Organization: IBM --> <BODY>This is where the text goes. </BODY> </HTML> Developed by: Saif Ullah Dar 1/7/2014 22
  • 23. Signal the end of HTML document. <HTML> <HEAD> <TITLE> My Home Page </TITLE> </HEAD> <!-- Written by Manas K Sahoo --> <!-- Created: 30-May-2007 --> <!-- Organization: IBM --> <BODY>This is where the text goes. </BODY> </HTML> Developed by: Saif Ullah Dar 1/7/2014 23
  • 24. Range / Container tags They are called so because they cover a range of text. Example : <HTML>, <HEAD>, <BODY>, <TITLE> Standalone / Point tags Those tags which do not need an ending. Example: <HR>, <BR> Developed by: Saif Ullah Dar 1/7/2014 24
  • 25. Developed by: Saif Ullah Dar 1/7/2014 25
  • 26.  Tags used for separating one line with other can be classifies as follows:1. <P> tag 2. <PRE> tag 3. <BR> tag 4. <HR> tag Developed by: Saif Ullah Dar 1/7/2014 26
  • 27.  Normally all text in an HTML document is treated like one long paragraph. Indented or blank lines which normally indicate start of paragraphs in text are ignored.  To separate your text into paragraphs use the  The <P> tag forces an end of line and forces a blank line before the next paragraph. Developed by: Saif Ullah Dar 1/7/2014 27 <P> tag.
  • 28. Developed by: Saif Ullah Dar 1/7/2014 28
  • 29. Code Snippet To Fulfill the Requirement <p>This is should be the end of my first paragraph in HTML.</p> <p>This should be the start of my second paragraph in HTML.</p> <p>And this is should be my third paragraph in HTML.</p> Developed by: Saif Ullah Dar 1/7/2014 29
  • 30. <p> tag forces an end of line and forces a blank line before the next paragraph. <p>This is should be the end of my first paragraph in HTML.</p> <p>This should be the start of my second paragraph in HTML.</p> <p>And this is should be my third paragraph in HTML.</p> Developed by: Saif Ullah Dar 1/7/2014 30
  • 31. <p> tag forces an end of line and forces a blank line before the next paragraph. <p>This is should be the end of my first paragraph in HTML.</p> <p>This should be the start of my second paragraph in HTML.</p> <p>And this is should be my third paragraph in HTML.</p> Ends the paragraph tag. Developed by: Saif Ullah Dar 1/7/2014 31
  • 32.  Preformatted tag is used to display the data in the explorer as written in the Program.  To use the tabs in the paragraphs  This tag is used to place the data according to your own style.  The font size of this tag is different from the font size of the <P> Tag  Do not forget to close this Tag. Developed by: Saif Ullah Dar 1/7/2014 32 <PRE> tag.
  • 33. Code Snippet To Fulfill the Requirement <pre>This is should be the end of my first Paragraph in HTML Using the PRE FORMATTED TAG.</pre> <pre>This should be the start of my second paragraph in HTML.</pre> <p>And this is should be my third paragraph in HTML.</p> Developed by: Saif Ullah Dar 1/7/2014 33
  • 34. SAIF ULLAH DAR Developed by: Saif Ullah Dar 1/7/2014 34