SlideShare a Scribd company logo
1 of 19
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

Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...Suhani Kapoor
 
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士obuhobo
 
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...Suhani Kapoor
 
Call Girls In Bhikaji Cama Place 24/7✡️9711147426✡️ Escorts Service
Call Girls In Bhikaji Cama Place 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Bhikaji Cama Place 24/7✡️9711147426✡️ Escorts Service
Call Girls In Bhikaji Cama Place 24/7✡️9711147426✡️ Escorts Servicejennyeacort
 
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call GirlsSonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call GirlsNiya Khan
 
How to Find the Best NEET Coaching in Indore (2).pdf
How to Find the Best NEET Coaching in Indore (2).pdfHow to Find the Best NEET Coaching in Indore (2).pdf
How to Find the Best NEET Coaching in Indore (2).pdfmayank158542
 
Business Development and Product Strategy for a SME named SARL based in Leban...
Business Development and Product Strategy for a SME named SARL based in Leban...Business Development and Product Strategy for a SME named SARL based in Leban...
Business Development and Product Strategy for a SME named SARL based in Leban...Soham Mondal
 
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...Suhani Kapoor
 
办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一
办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一
办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一A SSS
 
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service CuttackVIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service CuttackSuhani Kapoor
 
Black and White Minimalist Co Letter.pdf
Black and White Minimalist Co Letter.pdfBlack and White Minimalist Co Letter.pdf
Black and White Minimalist Co Letter.pdfpadillaangelina0023
 
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证obuhobo
 
Notes of bca Question paper for exams and tests
Notes of bca Question paper for exams and testsNotes of bca Question paper for exams and tests
Notes of bca Question paper for exams and testspriyanshukumar97908
 
Storytelling, Ethics and Workflow in Documentary Photography
Storytelling, Ethics and Workflow in Documentary PhotographyStorytelling, Ethics and Workflow in Documentary Photography
Storytelling, Ethics and Workflow in Documentary PhotographyOrtega Alikwe
 
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home MadeDubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Madekojalkojal131
 
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call GirlsDelhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girlsshivangimorya083
 
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...Suhani Kapoor
 
Ioannis Tzachristas Self-Presentation for MBA.pdf
Ioannis Tzachristas Self-Presentation for MBA.pdfIoannis Tzachristas Self-Presentation for MBA.pdf
Ioannis Tzachristas Self-Presentation for MBA.pdfjtzach
 

Recently uploaded (20)

Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
Low Rate Call Girls Gorakhpur Anika 8250192130 Independent Escort Service Gor...
 
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
 
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
 
Call Girls In Bhikaji Cama Place 24/7✡️9711147426✡️ Escorts Service
Call Girls In Bhikaji Cama Place 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Bhikaji Cama Place 24/7✡️9711147426✡️ Escorts Service
Call Girls In Bhikaji Cama Place 24/7✡️9711147426✡️ Escorts Service
 
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call GirlsSonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
 
How to Find the Best NEET Coaching in Indore (2).pdf
How to Find the Best NEET Coaching in Indore (2).pdfHow to Find the Best NEET Coaching in Indore (2).pdf
How to Find the Best NEET Coaching in Indore (2).pdf
 
Business Development and Product Strategy for a SME named SARL based in Leban...
Business Development and Product Strategy for a SME named SARL based in Leban...Business Development and Product Strategy for a SME named SARL based in Leban...
Business Development and Product Strategy for a SME named SARL based in Leban...
 
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
 
办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一
办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一
办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一
 
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service CuttackVIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
VIP Call Girls in Cuttack Aarohi 8250192130 Independent Escort Service Cuttack
 
Young Call~Girl in Pragati Maidan New Delhi 8448380779 Full Enjoy Escort Service
Young Call~Girl in Pragati Maidan New Delhi 8448380779 Full Enjoy Escort ServiceYoung Call~Girl in Pragati Maidan New Delhi 8448380779 Full Enjoy Escort Service
Young Call~Girl in Pragati Maidan New Delhi 8448380779 Full Enjoy Escort Service
 
FULL ENJOY Call Girls In Gautam Nagar (Delhi) Call Us 9953056974
FULL ENJOY Call Girls In Gautam Nagar (Delhi) Call Us 9953056974FULL ENJOY Call Girls In Gautam Nagar (Delhi) Call Us 9953056974
FULL ENJOY Call Girls In Gautam Nagar (Delhi) Call Us 9953056974
 
Black and White Minimalist Co Letter.pdf
Black and White Minimalist Co Letter.pdfBlack and White Minimalist Co Letter.pdf
Black and White Minimalist Co Letter.pdf
 
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
 
Notes of bca Question paper for exams and tests
Notes of bca Question paper for exams and testsNotes of bca Question paper for exams and tests
Notes of bca Question paper for exams and tests
 
Storytelling, Ethics and Workflow in Documentary Photography
Storytelling, Ethics and Workflow in Documentary PhotographyStorytelling, Ethics and Workflow in Documentary Photography
Storytelling, Ethics and Workflow in Documentary Photography
 
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home MadeDubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
 
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call GirlsDelhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
 
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
 
Ioannis Tzachristas Self-Presentation for MBA.pdf
Ioannis Tzachristas Self-Presentation for MBA.pdfIoannis Tzachristas Self-Presentation for MBA.pdf
Ioannis Tzachristas Self-Presentation for MBA.pdf
 

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>