SlideShare a Scribd company logo
HTML
By:
Mukesh Kumar
Contents…
• Introduction.
• Representation of HTML.
• HTML elements.
• HTML attributes.
• HTML style.
• HTML formatting.
• HTML links.
• HTML images.
• HTML lists.
• HTML forms and frames.
Introduction
HTML stands for HYPER TEXT MARKUP
LANGUAGE.
HTML is a markup language for describing web
documents (web pages).
Markup language is a set of markup tags.
It have we use all predefined tags.
HTML is generally uses for the creation of static web
page.
HYPERTEXT MARKUP LANGUAGE (HTML)
Example HTML code:
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1> This is heading </h1>
<p> This is paragraph </p>
</body>
</html>
HTML Element
Nested HTML element
HTML elements can be nested (element can contain element).
<html>
<body>
<h1>this is head</h1>
<p>this is paragraph</p>
</body>
</html>
Empty HTML element
<br> is an empty element without closing tag
HTML Attributes
Attributes provide additional information about the
element
Attributes come in name/value pairs like: name="value".
1. Lang attribute
<html lang=“en-US”>
2. Title attribute
<p title=“about title”>
3. Size attribute
width=“ ”, Height=“ ”, alt=“ ”.
HTML Styles
• Every html has default style
(bgcolor is white and text is black)
• Rules:- style=“property:value”.
1. HTML text color
<h1 style=“color:blue”>------</h1>
2. HTML text size
<h1 style=“font-size:300%”>------</h1>
3.HTML text alignment
<p style=“text-align:center”>-----</p>
HTML Formattings
1. Bold and Strong formatting
<p><b>this text is bold</b></p>
<p><strong>this text is strong</strong></p>
2. Subscript and Superscript formatting
<sub>------</sub>
<sup>------</sup>
3. Marked formatting
<h1>HTML<mark>marked</mark></h1>
HTML Links
Link syntax:
<a href="url">Link text</a>
Open link in new tab
<a href=“url”target=“_blank”>-----</a>
Image as link
<a href=“default.asp”>
<img src=“img.jpg” alt=“----”>
</a>
HTML Images
In HTML, images are defined with the <img> tag.
To display an image on a page, you need to use the src
attribute. Src stands for "source". The value of the src attribute
is the URL of the image
The syntax of defining an image:
<img src="url“/>
Image Floating
<p>
<img src=“url” alt=“----” style=“float:right” width:40px;
height:40px;”>
</p>
HTML Tables
Tables are defined with the <table> tag. A table is
divided into rows (with <tr> tag), and each row is
divided into data cells (with <td> tag) where td stands
for "table data," which is the content of a data.
Syntax of table
<table border=“1” style=“width:100%”>
<tr>
<td>-----</td>
</tr>
</table>
HTML table
• Table with colspan
• Table with rowspan
• Syntax:
<table style=“width:100%”>
<tr>
<th>NAME</th>
<th colspan=“2”>address</th>
</tr>
• Table with caption
<caption>ABC</caption>
HTML Lists
Unorderd list
-An unordered list is a list of items marked with bullets,
disc, circle and Square
-An unordered list starts with the <ul> tag. Each list
item starts with the <li> tag.
-Syntax:
<ul style=“list-style-type:disc”>
<li>Coffee</li>
</ul>
• Coffee.
Ordered Lists:
An ordered list is also a list of items marked with
numbers.
An ordered list starts with the <ol> tag. Each list item
starts with the <li> tag.
Syntax:
<ol>
<li>Coffee</li>
</ol>
1.Coffee
Discription List
A definition list is not a list of single items. It is a list of items
with a description of each item.
A definition list starts with a <dl> tag (definition list).
Each term starts with a <dt> tag (definition term).
Each description starts with a <dd> tag (definition description).
<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
</dl>
Coffee
Black hot drink
HTML Forms
A form is an area that can contain form elements that
allow the user to enter information (like text fields,
textarea fields,radio buttons, checkboxes) in a form.
A form is defined with the <form> tag.
The most used form tag is the <input> tag.
When the user clicks on the "Submit" button, the
content of the form is sent to the server.
HTML Forms
Form Syntax:
<form>
Your name:
<input type=“text” name=“name”><br>
Your email:
<input type=“email" name= “email”><br>
<input type=“radio” name=“male”>
<input type=“radio” name=“female”>
</form>
HTML Frames
Each HTML document is called a frame, and each frame is
independent of the other. we can display more than one HTML
document in the same browser.
An iframe is used to display a web page within a web page.
Syntax:
<iframe src="URL"></iframe>
HTML (Hyper Text Markup Language) by Mukesh

More Related Content

What's hot (19)

Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
html tags
 html tags html tags
html tags
 
Css
CssCss
Css
 
Tables and Forms in HTML
Tables and Forms in HTMLTables and Forms in HTML
Tables and Forms in HTML
 
Creating your 1st html page
Creating your 1st html pageCreating your 1st html page
Creating your 1st html page
 
Html
HtmlHtml
Html
 
CSS - LinkedIn
CSS - LinkedInCSS - LinkedIn
CSS - LinkedIn
 
Html table
Html tableHtml table
Html table
 
HTML: Tables and Forms
HTML: Tables and FormsHTML: Tables and Forms
HTML: Tables and Forms
 
CSS notes
CSS notesCSS notes
CSS notes
 
HTML
HTMLHTML
HTML
 
Html Table
Html TableHtml Table
Html Table
 
Css tutorial
Css tutorialCss tutorial
Css tutorial
 
HTML Table Tags
HTML Table TagsHTML Table Tags
HTML Table Tags
 
Intodcution to Html
Intodcution to HtmlIntodcution to Html
Intodcution to Html
 
Html table tags
Html table tagsHtml table tags
Html table tags
 
HTML
HTML HTML
HTML
 
HTML 5 Tables and Forms
HTML 5 Tables and FormsHTML 5 Tables and Forms
HTML 5 Tables and Forms
 
Html 1
Html 1Html 1
Html 1
 

Similar to HTML (Hyper Text Markup Language) by Mukesh

Similar to HTML (Hyper Text Markup Language) by Mukesh (20)

Learn html Basics
Learn html BasicsLearn html Basics
Learn html Basics
 
learnhtmlbyvipuladissanayake-170516061515 (1).pptx
learnhtmlbyvipuladissanayake-170516061515 (1).pptxlearnhtmlbyvipuladissanayake-170516061515 (1).pptx
learnhtmlbyvipuladissanayake-170516061515 (1).pptx
 
HTML5 2019
HTML5 2019HTML5 2019
HTML5 2019
 
Html tables
Html tablesHtml tables
Html tables
 
Html3
Html3Html3
Html3
 
Html3
Html3Html3
Html3
 
Use of Lists and Tables in HTML
Use of Lists and Tables in HTMLUse of Lists and Tables in HTML
Use of Lists and Tables in HTML
 
HTML
HTMLHTML
HTML
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
Html (1)
Html (1)Html (1)
Html (1)
 
PPT-203105353-1.pdf
PPT-203105353-1.pdfPPT-203105353-1.pdf
PPT-203105353-1.pdf
 
Html introduction
Html introductionHtml introduction
Html introduction
 
Lecture4 web design and development
Lecture4 web design and developmentLecture4 web design and development
Lecture4 web design and development
 
Unit 1wt
Unit 1wtUnit 1wt
Unit 1wt
 
Unit 1wt
Unit 1wtUnit 1wt
Unit 1wt
 
Web html table tags
Web html  table tagsWeb html  table tags
Web html table tags
 
HTML Tables
HTML TablesHTML Tables
HTML Tables
 
Html starting
Html startingHtml starting
Html starting
 
HTML
HTMLHTML
HTML
 
CHAPTER 1
CHAPTER 1CHAPTER 1
CHAPTER 1
 

More from Mukesh Kumar

Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by MukeshMukesh Kumar
 
Institute Mangement System PPT By Mukesh
Institute Mangement System PPT By MukeshInstitute Mangement System PPT By Mukesh
Institute Mangement System PPT By MukeshMukesh Kumar
 
E-ball PPT BY Mukesh
E-ball PPT BY MukeshE-ball PPT BY Mukesh
E-ball PPT BY MukeshMukesh Kumar
 
Mail server PPT By Mukesh
Mail server PPT By MukeshMail server PPT By Mukesh
Mail server PPT By MukeshMukesh Kumar
 
Courier Management System By Mukesh
Courier Management System By MukeshCourier Management System By Mukesh
Courier Management System By MukeshMukesh Kumar
 
Cascading Style Sheets By Mukesh
Cascading Style Sheets By MukeshCascading Style Sheets By Mukesh
Cascading Style Sheets By MukeshMukesh Kumar
 

More from Mukesh Kumar (6)

Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by Mukesh
 
Institute Mangement System PPT By Mukesh
Institute Mangement System PPT By MukeshInstitute Mangement System PPT By Mukesh
Institute Mangement System PPT By Mukesh
 
E-ball PPT BY Mukesh
E-ball PPT BY MukeshE-ball PPT BY Mukesh
E-ball PPT BY Mukesh
 
Mail server PPT By Mukesh
Mail server PPT By MukeshMail server PPT By Mukesh
Mail server PPT By Mukesh
 
Courier Management System By Mukesh
Courier Management System By MukeshCourier Management System By Mukesh
Courier Management System By Mukesh
 
Cascading Style Sheets By Mukesh
Cascading Style Sheets By MukeshCascading Style Sheets By Mukesh
Cascading Style Sheets By Mukesh
 

Recently uploaded

0524.THOMASGIRARD_CURRICULUMVITAE-01.pdf
0524.THOMASGIRARD_CURRICULUMVITAE-01.pdf0524.THOMASGIRARD_CURRICULUMVITAE-01.pdf
0524.THOMASGIRARD_CURRICULUMVITAE-01.pdfThomas GIRARD BDes
 
Transferable Skills - Your Roadmap - Part 1 and 2 - Dirk Spencer Senior Recru...
Transferable Skills - Your Roadmap - Part 1 and 2 - Dirk Spencer Senior Recru...Transferable Skills - Your Roadmap - Part 1 and 2 - Dirk Spencer Senior Recru...
Transferable Skills - Your Roadmap - Part 1 and 2 - Dirk Spencer Senior Recru...Dirk Spencer Corporate Recruiter LION
 
Operating system. short answes and Interview questions .pdf
Operating system. short answes and Interview questions .pdfOperating system. short answes and Interview questions .pdf
Operating system. short answes and Interview questions .pdfharikrishnahari6276
 
Widal Agglutination Test: A rapid serological diagnosis of typhoid fever
Widal Agglutination Test: A rapid serological diagnosis of typhoid feverWidal Agglutination Test: A rapid serological diagnosis of typhoid fever
Widal Agglutination Test: A rapid serological diagnosis of typhoid fevertaexnic
 
欧洲杯投注网站-欧洲杯投注网站推荐-欧洲杯投注网站| 立即访问【ac123.net】
欧洲杯投注网站-欧洲杯投注网站推荐-欧洲杯投注网站| 立即访问【ac123.net】欧洲杯投注网站-欧洲杯投注网站推荐-欧洲杯投注网站| 立即访问【ac123.net】
欧洲杯投注网站-欧洲杯投注网站推荐-欧洲杯投注网站| 立即访问【ac123.net】foismail170
 
129. Reviewer Certificate in BioNature [2024]
129. Reviewer Certificate in BioNature [2024]129. Reviewer Certificate in BioNature [2024]
129. Reviewer Certificate in BioNature [2024]Manu Mitra
 
Employee Background Verification Service in Bangladesh
Employee Background Verification Service in BangladeshEmployee Background Verification Service in Bangladesh
Employee Background Verification Service in BangladeshSabuj Ahmed
 
Genaihelloallstudyjamheregetstartedwithai
GenaihelloallstudyjamheregetstartedwithaiGenaihelloallstudyjamheregetstartedwithai
Genaihelloallstudyjamheregetstartedwithaijoceko6768
 
0524.THOMASGIRARD_SINGLEPAGERESUME-01.pdf
0524.THOMASGIRARD_SINGLEPAGERESUME-01.pdf0524.THOMASGIRARD_SINGLEPAGERESUME-01.pdf
0524.THOMASGIRARD_SINGLEPAGERESUME-01.pdfThomas GIRARD BDes
 
135. Reviewer Certificate in Journal of Engineering
135. Reviewer Certificate in Journal of Engineering135. Reviewer Certificate in Journal of Engineering
135. Reviewer Certificate in Journal of EngineeringManu Mitra
 
Dr. Nazrul Islam, Northern University Bangladesh - CV (29.5.2024).pdf
Dr. Nazrul Islam, Northern University Bangladesh - CV (29.5.2024).pdfDr. Nazrul Islam, Northern University Bangladesh - CV (29.5.2024).pdf
Dr. Nazrul Islam, Northern University Bangladesh - CV (29.5.2024).pdfDr. Nazrul Islam
 
D.El.Ed. College List -Session 2024-26.pdf
D.El.Ed. College List -Session 2024-26.pdfD.El.Ed. College List -Session 2024-26.pdf
D.El.Ed. College List -Session 2024-26.pdfbipedoy339
 
133. Reviewer Certificate in Advances in Research
133. Reviewer Certificate in Advances in Research133. Reviewer Certificate in Advances in Research
133. Reviewer Certificate in Advances in ResearchManu Mitra
 
太阳城娱乐-太阳城娱乐推荐-太阳城娱乐官方网站| 立即访问【ac123.net】
太阳城娱乐-太阳城娱乐推荐-太阳城娱乐官方网站| 立即访问【ac123.net】太阳城娱乐-太阳城娱乐推荐-太阳城娱乐官方网站| 立即访问【ac123.net】
太阳城娱乐-太阳城娱乐推荐-太阳城娱乐官方网站| 立即访问【ac123.net】foismail170
 
DIGITAL MARKETING COURSE IN CHENNAI.pptx
DIGITAL MARKETING COURSE IN CHENNAI.pptxDIGITAL MARKETING COURSE IN CHENNAI.pptx
DIGITAL MARKETING COURSE IN CHENNAI.pptxFarzanaRbcomcs
 
134. Reviewer Certificate in Computer Science
134. Reviewer Certificate in Computer Science134. Reviewer Certificate in Computer Science
134. Reviewer Certificate in Computer ScienceManu Mitra
 
Heidi Livengood Resume Senior Technical Recruiter / HR Generalist
Heidi Livengood Resume Senior Technical Recruiter / HR GeneralistHeidi Livengood Resume Senior Technical Recruiter / HR Generalist
Heidi Livengood Resume Senior Technical Recruiter / HR GeneralistHeidiLivengood
 
132. Acta Scientific Pharmaceutical Sciences
132. Acta Scientific Pharmaceutical Sciences132. Acta Scientific Pharmaceutical Sciences
132. Acta Scientific Pharmaceutical SciencesManu Mitra
 
皇冠体育- 皇冠体育官方网站- CROWN SPORTS| 立即访问【ac123.net】
皇冠体育- 皇冠体育官方网站- CROWN SPORTS| 立即访问【ac123.net】皇冠体育- 皇冠体育官方网站- CROWN SPORTS| 立即访问【ac123.net】
皇冠体育- 皇冠体育官方网站- CROWN SPORTS| 立即访问【ac123.net】larisashrestha558
 
欧洲杯买球平台-欧洲杯买球平台推荐-欧洲杯买球平台| 立即访问【ac123.net】
欧洲杯买球平台-欧洲杯买球平台推荐-欧洲杯买球平台| 立即访问【ac123.net】欧洲杯买球平台-欧洲杯买球平台推荐-欧洲杯买球平台| 立即访问【ac123.net】
欧洲杯买球平台-欧洲杯买球平台推荐-欧洲杯买球平台| 立即访问【ac123.net】foismail170
 

Recently uploaded (20)

0524.THOMASGIRARD_CURRICULUMVITAE-01.pdf
0524.THOMASGIRARD_CURRICULUMVITAE-01.pdf0524.THOMASGIRARD_CURRICULUMVITAE-01.pdf
0524.THOMASGIRARD_CURRICULUMVITAE-01.pdf
 
Transferable Skills - Your Roadmap - Part 1 and 2 - Dirk Spencer Senior Recru...
Transferable Skills - Your Roadmap - Part 1 and 2 - Dirk Spencer Senior Recru...Transferable Skills - Your Roadmap - Part 1 and 2 - Dirk Spencer Senior Recru...
Transferable Skills - Your Roadmap - Part 1 and 2 - Dirk Spencer Senior Recru...
 
Operating system. short answes and Interview questions .pdf
Operating system. short answes and Interview questions .pdfOperating system. short answes and Interview questions .pdf
Operating system. short answes and Interview questions .pdf
 
Widal Agglutination Test: A rapid serological diagnosis of typhoid fever
Widal Agglutination Test: A rapid serological diagnosis of typhoid feverWidal Agglutination Test: A rapid serological diagnosis of typhoid fever
Widal Agglutination Test: A rapid serological diagnosis of typhoid fever
 
欧洲杯投注网站-欧洲杯投注网站推荐-欧洲杯投注网站| 立即访问【ac123.net】
欧洲杯投注网站-欧洲杯投注网站推荐-欧洲杯投注网站| 立即访问【ac123.net】欧洲杯投注网站-欧洲杯投注网站推荐-欧洲杯投注网站| 立即访问【ac123.net】
欧洲杯投注网站-欧洲杯投注网站推荐-欧洲杯投注网站| 立即访问【ac123.net】
 
129. Reviewer Certificate in BioNature [2024]
129. Reviewer Certificate in BioNature [2024]129. Reviewer Certificate in BioNature [2024]
129. Reviewer Certificate in BioNature [2024]
 
Employee Background Verification Service in Bangladesh
Employee Background Verification Service in BangladeshEmployee Background Verification Service in Bangladesh
Employee Background Verification Service in Bangladesh
 
Genaihelloallstudyjamheregetstartedwithai
GenaihelloallstudyjamheregetstartedwithaiGenaihelloallstudyjamheregetstartedwithai
Genaihelloallstudyjamheregetstartedwithai
 
0524.THOMASGIRARD_SINGLEPAGERESUME-01.pdf
0524.THOMASGIRARD_SINGLEPAGERESUME-01.pdf0524.THOMASGIRARD_SINGLEPAGERESUME-01.pdf
0524.THOMASGIRARD_SINGLEPAGERESUME-01.pdf
 
135. Reviewer Certificate in Journal of Engineering
135. Reviewer Certificate in Journal of Engineering135. Reviewer Certificate in Journal of Engineering
135. Reviewer Certificate in Journal of Engineering
 
Dr. Nazrul Islam, Northern University Bangladesh - CV (29.5.2024).pdf
Dr. Nazrul Islam, Northern University Bangladesh - CV (29.5.2024).pdfDr. Nazrul Islam, Northern University Bangladesh - CV (29.5.2024).pdf
Dr. Nazrul Islam, Northern University Bangladesh - CV (29.5.2024).pdf
 
D.El.Ed. College List -Session 2024-26.pdf
D.El.Ed. College List -Session 2024-26.pdfD.El.Ed. College List -Session 2024-26.pdf
D.El.Ed. College List -Session 2024-26.pdf
 
133. Reviewer Certificate in Advances in Research
133. Reviewer Certificate in Advances in Research133. Reviewer Certificate in Advances in Research
133. Reviewer Certificate in Advances in Research
 
太阳城娱乐-太阳城娱乐推荐-太阳城娱乐官方网站| 立即访问【ac123.net】
太阳城娱乐-太阳城娱乐推荐-太阳城娱乐官方网站| 立即访问【ac123.net】太阳城娱乐-太阳城娱乐推荐-太阳城娱乐官方网站| 立即访问【ac123.net】
太阳城娱乐-太阳城娱乐推荐-太阳城娱乐官方网站| 立即访问【ac123.net】
 
DIGITAL MARKETING COURSE IN CHENNAI.pptx
DIGITAL MARKETING COURSE IN CHENNAI.pptxDIGITAL MARKETING COURSE IN CHENNAI.pptx
DIGITAL MARKETING COURSE IN CHENNAI.pptx
 
134. Reviewer Certificate in Computer Science
134. Reviewer Certificate in Computer Science134. Reviewer Certificate in Computer Science
134. Reviewer Certificate in Computer Science
 
Heidi Livengood Resume Senior Technical Recruiter / HR Generalist
Heidi Livengood Resume Senior Technical Recruiter / HR GeneralistHeidi Livengood Resume Senior Technical Recruiter / HR Generalist
Heidi Livengood Resume Senior Technical Recruiter / HR Generalist
 
132. Acta Scientific Pharmaceutical Sciences
132. Acta Scientific Pharmaceutical Sciences132. Acta Scientific Pharmaceutical Sciences
132. Acta Scientific Pharmaceutical Sciences
 
皇冠体育- 皇冠体育官方网站- CROWN SPORTS| 立即访问【ac123.net】
皇冠体育- 皇冠体育官方网站- CROWN SPORTS| 立即访问【ac123.net】皇冠体育- 皇冠体育官方网站- CROWN SPORTS| 立即访问【ac123.net】
皇冠体育- 皇冠体育官方网站- CROWN SPORTS| 立即访问【ac123.net】
 
欧洲杯买球平台-欧洲杯买球平台推荐-欧洲杯买球平台| 立即访问【ac123.net】
欧洲杯买球平台-欧洲杯买球平台推荐-欧洲杯买球平台| 立即访问【ac123.net】欧洲杯买球平台-欧洲杯买球平台推荐-欧洲杯买球平台| 立即访问【ac123.net】
欧洲杯买球平台-欧洲杯买球平台推荐-欧洲杯买球平台| 立即访问【ac123.net】
 

HTML (Hyper Text Markup Language) by Mukesh

  • 2. Contents… • Introduction. • Representation of HTML. • HTML elements. • HTML attributes. • HTML style. • HTML formatting. • HTML links. • HTML images. • HTML lists. • HTML forms and frames.
  • 3. Introduction HTML stands for HYPER TEXT MARKUP LANGUAGE. HTML is a markup language for describing web documents (web pages). Markup language is a set of markup tags. It have we use all predefined tags. HTML is generally uses for the creation of static web page.
  • 4. HYPERTEXT MARKUP LANGUAGE (HTML) Example HTML code: <html> <head> <title>Hello World</title> </head> <body> <h1> This is heading </h1> <p> This is paragraph </p> </body> </html>
  • 5. HTML Element Nested HTML element HTML elements can be nested (element can contain element). <html> <body> <h1>this is head</h1> <p>this is paragraph</p> </body> </html> Empty HTML element <br> is an empty element without closing tag
  • 6. HTML Attributes Attributes provide additional information about the element Attributes come in name/value pairs like: name="value". 1. Lang attribute <html lang=“en-US”> 2. Title attribute <p title=“about title”> 3. Size attribute width=“ ”, Height=“ ”, alt=“ ”.
  • 7. HTML Styles • Every html has default style (bgcolor is white and text is black) • Rules:- style=“property:value”. 1. HTML text color <h1 style=“color:blue”>------</h1> 2. HTML text size <h1 style=“font-size:300%”>------</h1> 3.HTML text alignment <p style=“text-align:center”>-----</p>
  • 8. HTML Formattings 1. Bold and Strong formatting <p><b>this text is bold</b></p> <p><strong>this text is strong</strong></p> 2. Subscript and Superscript formatting <sub>------</sub> <sup>------</sup> 3. Marked formatting <h1>HTML<mark>marked</mark></h1>
  • 9. HTML Links Link syntax: <a href="url">Link text</a> Open link in new tab <a href=“url”target=“_blank”>-----</a> Image as link <a href=“default.asp”> <img src=“img.jpg” alt=“----”> </a>
  • 10. HTML Images In HTML, images are defined with the <img> tag. To display an image on a page, you need to use the src attribute. Src stands for "source". The value of the src attribute is the URL of the image The syntax of defining an image: <img src="url“/> Image Floating <p> <img src=“url” alt=“----” style=“float:right” width:40px; height:40px;”> </p>
  • 11. HTML Tables Tables are defined with the <table> tag. A table is divided into rows (with <tr> tag), and each row is divided into data cells (with <td> tag) where td stands for "table data," which is the content of a data. Syntax of table <table border=“1” style=“width:100%”> <tr> <td>-----</td> </tr> </table>
  • 12. HTML table • Table with colspan • Table with rowspan • Syntax: <table style=“width:100%”> <tr> <th>NAME</th> <th colspan=“2”>address</th> </tr> • Table with caption <caption>ABC</caption>
  • 13. HTML Lists Unorderd list -An unordered list is a list of items marked with bullets, disc, circle and Square -An unordered list starts with the <ul> tag. Each list item starts with the <li> tag. -Syntax: <ul style=“list-style-type:disc”> <li>Coffee</li> </ul> • Coffee.
  • 14. Ordered Lists: An ordered list is also a list of items marked with numbers. An ordered list starts with the <ol> tag. Each list item starts with the <li> tag. Syntax: <ol> <li>Coffee</li> </ol> 1.Coffee
  • 15. Discription List A definition list is not a list of single items. It is a list of items with a description of each item. A definition list starts with a <dl> tag (definition list). Each term starts with a <dt> tag (definition term). Each description starts with a <dd> tag (definition description). <dl> <dt>Coffee</dt> <dd>Black hot drink</dd> </dl> Coffee Black hot drink
  • 16. HTML Forms A form is an area that can contain form elements that allow the user to enter information (like text fields, textarea fields,radio buttons, checkboxes) in a form. A form is defined with the <form> tag. The most used form tag is the <input> tag. When the user clicks on the "Submit" button, the content of the form is sent to the server.
  • 17. HTML Forms Form Syntax: <form> Your name: <input type=“text” name=“name”><br> Your email: <input type=“email" name= “email”><br> <input type=“radio” name=“male”> <input type=“radio” name=“female”> </form>
  • 18. HTML Frames Each HTML document is called a frame, and each frame is independent of the other. we can display more than one HTML document in the same browser. An iframe is used to display a web page within a web page. Syntax: <iframe src="URL"></iframe>