SlideShare ist ein Scribd-Unternehmen logo
1 von 12
SHRI GURU NANAK
H/S PUBLIC SCHOOL
REPORT FILE ON
COMPUTER
SUBMITTED TO SUBMITTED BY
XYZ ABC
CONTENTS
<HEAD> Tag
<TITLE> Tag
<BODY> Tag
<CENTER> Tag
<P> Tag
Bold <B> Tag
Italic <I> Tag
Underline <U> Tag
Unordered List <UL>
Ordered List <OL>
<HEAD> Tag
This element is a container for all the header elements. The <HEAD> must
include a title for the document that can include scripts, styles, meta
information and many more. The second line of your HTML document should
be <HEAD>.
The content contained in the head section of your document provides
information to the browsers and search engines but, it is not displayed
directly on the web page. The end of the head tag is indicated by </HEAD>.
e.g.
<HTML>
<HEAD>
Header information comes here
</HEAD>
</HTML>
<TITLE> Tag
This tag defines the title of the document. Title must be a simple text and
should not be same as the file name. It is placed between <HEAD> and
</HEAD> tag.
e.g.
<HTML>
<HEAD>
<TITLE>
This is the title of my page.
</TITLE>
</HEAD>
</HTML>
Output
<BODY> Tag
This tag defines the document’s body. It is used to set the basic page
characteristics. It contains all the necessary contents of a HTML document,
such as text, hyperlinks, images, tables, lists etc. The document of your Web
page is placed in between the opening <BODY> and closing </BODY> tag.
The <BODY> tag is opened just after the head section is closed. It is closed
just before closing the <HTML> tag.
e.g.
<HTML>
<HEAD>
<TITLE>
My First Web Page
</TITLE>
</HEAD>
<BODY>
Hello world. This is my first web page.
</BODY>
</HTML>
Output
<CENTER> Tag
This tag is used to centralize a segment of the text to be displayed on
browser’s window. With the <CENTER> tag, closing tag </CENTER> is always
used. Anything between these two tags will be centered including text,
images or tables.
Syntex
<CENTER> … </CENTER>
e.g.
<HTML>
<HEAD>
<TITLE>
Center
</TITLE>
</HEAD>
<BODY>
<CENTER>
This text will be center-aligned.
</CENTER>
</BODY>
</HTML>
Output
Paragraph <P> Tag
This tag is used to mark the block of text as a paragraph. It is used to insert a
line break with extra space in the beginning. This is a container tag.
Syntax
<P> …… </P>
e.g.
<HTML>
<HEAD>
<TITLE>
Paragraph
</TITLE>
</HEAD>
<BODY>
<P> This is some text in a paragraph.</P>
</BODY>
</HTML>
Output
Bold <B> Tag
This tag specifies the text into bold text. It is a container element.
Syntax
<B> ……. </B>
e.g.
<HTML>
<HEAD>
<TITLE> Bold </TITLE>
</HEAD>
<BODY>
<P>
This is normal text and <B> this is bold text.
</B>
</P>
</BODY>
</HTML>
Output
Italic <I> Tag
This tag is used to make the text in italic form. It is also a container element.
Syntax
<I> ….. </I>
e.g.
<HTML>
<HEAD>
<TITLE> Italic </TITLE>
</HEAD>
<BODY>
<I> Hello </I>
</BODY>
</HTML>
Output
Underline <U> Tag
This tag is used to underline the text. It is also container element.
Syntax
<U> ……. </U>
e.g.
<HTML>
<HEAD>
<TITLE> Underline </TITLE>
</HEAD>
<BODY>
<P> This is a <U> text </U></P>
</BODY>
</HTML>
Output
UnorderedList <UL>
This list (also known as unnumberedlist) is an indented list with a bullet symbolin front
of each list item.
An unordered list starts with the <UL> tag. Each list item starts with the <LI>tag. The list
names are marked with bullets (typically small black circle).
The unordered list tag is a container tag. The default type for mostWeb browsers is a
full disc (black circle), but this can be adjusted using an HTML attribute called type.
Syntax
<UL> ……. </UL>
e.g.
<HTML>
<HEAD>
<TITLE>
Unordered List
</TITLE>
</HEAD>
<BODY>
<UL>
<LI>My firstitem on the list.</LI>
<LI>My second item on the list.</LI>
<LI>My third item on the list.</LI>
<LI>My fourth item on the list.</LI>
</UL>
</BODY>
</HTML>
Output
Ordered List <OL>
This list starts with the <OL> tag. Each list item starts with the <LI> tag. The
list items are marked with numbers. The ordered list tag is a container tag
which is used for numbered lists. By default, the numbering will be 1, 2, 3 ….
You can also adjust numbering type attribute.
Syntax
<OL> …… </OL>
e.g.
<HTML>
<HEAD>
<TITLE> Ordered List </TITLE>
</HEAD>
<BODY>
<OL>
<LI> Rose </LI>
<LI> Lotus </LI>
<LI> Lily </LI>
</OL>
</BODY>
</HTML>
Output

Weitere ähnliche Inhalte

Was ist angesagt? (20)

Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Introduction To HTML
Introduction To HTMLIntroduction To HTML
Introduction To HTML
 
Tags in html
Tags in htmlTags in html
Tags in html
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
Html
HtmlHtml
Html
 
Heaps
HeapsHeaps
Heaps
 
SQL BASIC QUERIES SOLUTION ~hmftj
SQL BASIC QUERIES SOLUTION ~hmftjSQL BASIC QUERIES SOLUTION ~hmftj
SQL BASIC QUERIES SOLUTION ~hmftj
 
Html introduction
Html introductionHtml introduction
Html introduction
 
Presentation on HTML
Presentation on HTMLPresentation on HTML
Presentation on HTML
 
Programming in c Arrays
Programming in c ArraysProgramming in c Arrays
Programming in c Arrays
 
Html presentation
Html presentationHtml presentation
Html presentation
 
Array in c
Array in cArray in c
Array in c
 
File handling in c
File handling in cFile handling in c
File handling in c
 
Aggregate function
Aggregate functionAggregate function
Aggregate function
 
Html
HtmlHtml
Html
 
Web Page Designing Using HTML
Web Page Designing Using HTMLWeb Page Designing Using HTML
Web Page Designing Using HTML
 
HTML Web design english & sinhala mix note
HTML Web design english & sinhala mix noteHTML Web design english & sinhala mix note
HTML Web design english & sinhala mix note
 
Computer Science-Data Structures :Abstract DataType (ADT)
Computer Science-Data Structures :Abstract DataType (ADT)Computer Science-Data Structures :Abstract DataType (ADT)
Computer Science-Data Structures :Abstract DataType (ADT)
 
Html Form Controls
Html Form ControlsHtml Form Controls
Html Form Controls
 
FYBSC IT Web Programming Unit II Html Page Layout & Navigation
FYBSC IT Web Programming Unit II Html Page Layout & NavigationFYBSC IT Web Programming Unit II Html Page Layout & Navigation
FYBSC IT Web Programming Unit II Html Page Layout & Navigation
 

Ähnlich wie Project Report on HTML

Ähnlich wie Project Report on HTML (20)

web technology
web technologyweb technology
web technology
 
Title, heading and paragraph tags
Title, heading and paragraph tagsTitle, heading and paragraph tags
Title, heading and paragraph tags
 
static dynamic html tags
 static dynamic html tags static dynamic html tags
static dynamic html tags
 
TagsL1.pptx
TagsL1.pptxTagsL1.pptx
TagsL1.pptx
 
basic-tags.PPT
basic-tags.PPTbasic-tags.PPT
basic-tags.PPT
 
Web designing
Web designingWeb designing
Web designing
 
WEB DESIGNING.pdf
WEB DESIGNING.pdfWEB DESIGNING.pdf
WEB DESIGNING.pdf
 
Html for beginners part I
Html for beginners part IHtml for beginners part I
Html for beginners part I
 
Html
HtmlHtml
Html
 
HTML
HTMLHTML
HTML
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Htmlppt 100604051515-phpapp01
Htmlppt 100604051515-phpapp01Htmlppt 100604051515-phpapp01
Htmlppt 100604051515-phpapp01
 
static dynamic html tags
static dynamic html tagsstatic dynamic html tags
static dynamic html tags
 
HTML/HTML5
HTML/HTML5HTML/HTML5
HTML/HTML5
 
Learn HTML Easier
Learn HTML EasierLearn HTML Easier
Learn HTML Easier
 
Html update1(30 8-2009)
Html update1(30 8-2009)Html update1(30 8-2009)
Html update1(30 8-2009)
 
HTML (Hyper Text Markup Language)
HTML (Hyper Text Markup Language)HTML (Hyper Text Markup Language)
HTML (Hyper Text Markup Language)
 
html.pdf
html.pdfhtml.pdf
html.pdf
 
html tutorial
html tutorialhtml tutorial
html tutorial
 
Html basics-auro skills
Html basics-auro skillsHtml basics-auro skills
Html basics-auro skills
 

Kürzlich hochgeladen

VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...SUHANI PANDEY
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.soniya singh
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceDelhi Call girls
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Delhi Call girls
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...APNIC
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.soniya singh
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxellan12
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls DubaiEscorts Call Girls
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Sheetaleventcompany
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLimonikaupta
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirtrahman018755
 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...SUHANI PANDEY
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableSeo
 

Kürzlich hochgeladen (20)

VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls Dubai
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 

Project Report on HTML

  • 1. SHRI GURU NANAK H/S PUBLIC SCHOOL REPORT FILE ON COMPUTER SUBMITTED TO SUBMITTED BY XYZ ABC
  • 2. CONTENTS <HEAD> Tag <TITLE> Tag <BODY> Tag <CENTER> Tag <P> Tag Bold <B> Tag Italic <I> Tag Underline <U> Tag Unordered List <UL> Ordered List <OL>
  • 3. <HEAD> Tag This element is a container for all the header elements. The <HEAD> must include a title for the document that can include scripts, styles, meta information and many more. The second line of your HTML document should be <HEAD>. The content contained in the head section of your document provides information to the browsers and search engines but, it is not displayed directly on the web page. The end of the head tag is indicated by </HEAD>. e.g. <HTML> <HEAD> Header information comes here </HEAD> </HTML>
  • 4. <TITLE> Tag This tag defines the title of the document. Title must be a simple text and should not be same as the file name. It is placed between <HEAD> and </HEAD> tag. e.g. <HTML> <HEAD> <TITLE> This is the title of my page. </TITLE> </HEAD> </HTML> Output
  • 5. <BODY> Tag This tag defines the document’s body. It is used to set the basic page characteristics. It contains all the necessary contents of a HTML document, such as text, hyperlinks, images, tables, lists etc. The document of your Web page is placed in between the opening <BODY> and closing </BODY> tag. The <BODY> tag is opened just after the head section is closed. It is closed just before closing the <HTML> tag. e.g. <HTML> <HEAD> <TITLE> My First Web Page </TITLE> </HEAD> <BODY> Hello world. This is my first web page. </BODY> </HTML> Output
  • 6. <CENTER> Tag This tag is used to centralize a segment of the text to be displayed on browser’s window. With the <CENTER> tag, closing tag </CENTER> is always used. Anything between these two tags will be centered including text, images or tables. Syntex <CENTER> … </CENTER> e.g. <HTML> <HEAD> <TITLE> Center </TITLE> </HEAD> <BODY> <CENTER> This text will be center-aligned. </CENTER> </BODY> </HTML> Output
  • 7. Paragraph <P> Tag This tag is used to mark the block of text as a paragraph. It is used to insert a line break with extra space in the beginning. This is a container tag. Syntax <P> …… </P> e.g. <HTML> <HEAD> <TITLE> Paragraph </TITLE> </HEAD> <BODY> <P> This is some text in a paragraph.</P> </BODY> </HTML> Output
  • 8. Bold <B> Tag This tag specifies the text into bold text. It is a container element. Syntax <B> ……. </B> e.g. <HTML> <HEAD> <TITLE> Bold </TITLE> </HEAD> <BODY> <P> This is normal text and <B> this is bold text. </B> </P> </BODY> </HTML> Output
  • 9. Italic <I> Tag This tag is used to make the text in italic form. It is also a container element. Syntax <I> ….. </I> e.g. <HTML> <HEAD> <TITLE> Italic </TITLE> </HEAD> <BODY> <I> Hello </I> </BODY> </HTML> Output
  • 10. Underline <U> Tag This tag is used to underline the text. It is also container element. Syntax <U> ……. </U> e.g. <HTML> <HEAD> <TITLE> Underline </TITLE> </HEAD> <BODY> <P> This is a <U> text </U></P> </BODY> </HTML> Output
  • 11. UnorderedList <UL> This list (also known as unnumberedlist) is an indented list with a bullet symbolin front of each list item. An unordered list starts with the <UL> tag. Each list item starts with the <LI>tag. The list names are marked with bullets (typically small black circle). The unordered list tag is a container tag. The default type for mostWeb browsers is a full disc (black circle), but this can be adjusted using an HTML attribute called type. Syntax <UL> ……. </UL> e.g. <HTML> <HEAD> <TITLE> Unordered List </TITLE> </HEAD> <BODY> <UL> <LI>My firstitem on the list.</LI> <LI>My second item on the list.</LI> <LI>My third item on the list.</LI> <LI>My fourth item on the list.</LI> </UL> </BODY> </HTML> Output
  • 12. Ordered List <OL> This list starts with the <OL> tag. Each list item starts with the <LI> tag. The list items are marked with numbers. The ordered list tag is a container tag which is used for numbered lists. By default, the numbering will be 1, 2, 3 …. You can also adjust numbering type attribute. Syntax <OL> …… </OL> e.g. <HTML> <HEAD> <TITLE> Ordered List </TITLE> </HEAD> <BODY> <OL> <LI> Rose </LI> <LI> Lotus </LI> <LI> Lily </LI> </OL> </BODY> </HTML> Output