SlideShare a Scribd company logo
HTML
INTRODUCTION HTML stands for  Hyper Text Markup Language predominant  markup language  for  web pages   Developed by  World Wide Web Consortium  &  WHATWG Type of format  Markup language
HTML Tags HTML markup tags are usually called HTML tags HTML tags are keywords surrounded by  angle brackets  like <html>  HTML tags normally  come in pairs  like <b> and </b>  The first tag in a pair is the  start tag,  the second tag is the  end tag   Start and end tags are also called  opening tags  and  closing tags HTML tags are not case sensitive
HTML Headings HTML headings are defined with the <h1> to <h6> tags. HTML Paragraphs HTML paragraphs are defined with the <p> tag. HTML Links HTML links are defined with the <a> tag. HTML Images HTML images are defined with the <img> tag. HTML Comments Comments can be inserted in the HTML code to make it more readable and understandable but they are ignored by the browser and are not displayed.
HTML Element An HTML element starts with a  start tag / opening tag  and ends with an  end tag / closing tag   The  element content  is everything between the start and the end tag  Some HTML elements have  empty content  . Eg.line break Empty elements are  closed in the start tag   Most HTML elements can have  attributes
HTML Attributes Attributes provide  additional information  about the element  Attributes are always specified in  the start tag   Attributes come in name/value pairs like:  name=&quot;value&quot;   HTML links are defined with the <a> tag.  Eg. <a href=&quot;http://www.w3schools.com&quot;>This is a link</a>
HTML Styles  Styles was introduced to style HTML elements using the style attribute, or indirectly in separate style sheets (CSS) Style Examples: Background Color Font Family, Color and Size Text Alignment
HTML Links  Link syntax: <a href=&quot;url&quot;>Link text</a>  A hyperlink is an address to a resource on the web. An anchor is a term used to define a hyperlink destination inside a document. The HTML anchor element <a>, is used to define both hyperlinks and anchors.
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 &quot;source&quot;. The value of the src attribute is the URL of the image  The syntax of defining an image: <img src=&quot;url&quot; />  The browser puts the image where the image tag occurs in the document.  The alt attribute is used to define an &quot;alternate text&quot; for an image. The &quot;alt&quot; attribute gives information of what is missing on a page if the browser can't load images.
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 &quot;table data,&quot; which is the content of a data cell.  Headings in a Table Headings in a table are defined with the <th> tag.
HTML Lists Unordered Lists An unordered list is a list of items marked with bullets. An unordered list starts with the <ul> tag. Each list item starts with the <li> tag. <ul> <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. <ol> <li>Coffee</li> </ol>  1.Coffee
Definition Lists 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 ( d efinition  l ist). Each term starts with a <dt> tag ( d efinition  t erm). Each description starts with a <dd> tag ( d efinition  d escription). <dl> <dt>Coffee</dt> <dd>Black hot drink</dd> </dl>  Coffee  Black hot drink
HTML Forms and Input 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 &quot;Submit&quot; button, the content of the form is sent to the server.
HTML Colors  HTML colors are defined using a hexadecimal notation for the combination of Red, Green, and Blue color values. The lowest value to the light sources is 0 and highest value is 255. Hex values are written as 3 double digit numbers, starting with a # sign. It gives a total of more than 16 million different colors to play with (256 x 256 x 256).
HTML Frames With frames, we can display more than one HTML document in the same browser window. Each HTML document is called a frame, and each frame is independent of the others. The <frameset> tag defines how to divide the window into frames  The <frame> tag defines what HTML document to put into each frame  The disadvantages of using frames are: The web developer must keep track of more HTML documents  It is difficult to print the entire page
TAG DESCRIPTION <!--...--> Defines a comment <!DOCTYPE>   Defines the document type <a> Defines an anchor < abbr > Defines an abbreviation <acronym> Defines an acronym <address> Defines contact information for the author/owner of a document <applet> Deprecated.  Defines an embedded applet <area /> Defines an area inside an image-map <b> Defines bold text <base /> Defines a default address or a default target for all links on a page < basefont  /> Deprecated.  Defines a default font, color, or size for the text in a page < bdo > Defines the text direction <big> Defines big text < blockquote > Defines a long quotation <body> Defines the document's body < br  /> Defines a single line break STF <button> Defines a push button STF
<caption> Defines a table caption <center> Deprecated.  Defines centered text <cite> Defines a citation <code> Defines computer code text < col  /> Defines attribute values for one or more columns in a table  < colgroup > Defines a group of columns in a table for formatting < dd > Defines a description of a term in a definition list <del> Defines deleted text < dfn > Defines a definition term <dir> Deprecated.  Defines a directory list <div> Defines a section in a document <dl> Defines a definition list < dt > Defines a term (an item) in a definition list < em > Defines emphasized text  < fieldset > Defines a border around elements in a form <font> Deprecated.  Defines font, color, and size for text <form> Defines an HTML form for user input <frame /> Defines a window (a frame) in a frameset
<h1> to <h6> Defines HTML headings <head> Defines information about the document <hr /> Defines a horizontal line <html> Defines an HTML document <i> Defines italic text < iframe > Defines an inline frame < img  /> Defines an image <input /> Defines an input control <ins> Defines inserted text <isindex> Deprecated.  Defines a searchable index related to a document < kbd > Defines keyboard text <label> Defines a label for an input element <legend> Defines a caption for a fieldset element < li > Defines a list item <link /> Defines the relationship between a document and an external resource  <map> Defines an image-map  <menu> Deprecated.  Defines a menu list <meta /> Defines metadata about an HTML document < noframes > Defines an alternate content for users that do not support frames
< noscript > Defines an alternate content for users that do not support client-side scripts <object> Defines an embedded object < ol > Defines an ordered list < optgroup > Defines a group of related options in a select list <option> Defines an option in a select list <p> Defines a paragraph < param  /> Defines a parameter for an object <pre> Defines preformatted text <q> Defines a short quotation <s> Deprecated.  Defines strikethrough text < samp > Defines sample computer code <script> Defines a client-side script <select> Defines a select list (drop-down list) <small> Defines small text <span> Defines a section in a document <strike> Deprecated.  Defines strikethrough text <strong> Defines strong text <sup> Defines superscripted text
<style> Defines style information for a document <sub> Defines subscripted text <sup> Defines superscripted text <table> Defines a table < tbody > Groups the body content in a table <td> Defines a cell in a table < textarea > Defines a multi-line text input control < tfoot > Groups the footer content in a table < th > Defines a header cell in a table <thead> Groups the header content in a table <title> Defines the title of a document <tr> Defines a row in a table <tt> Defines teletype text <u> Deprecated.  Defines underlined text <ul> Defines an unordered list <var> Defines a variable part of a text <xmp> Deprecated.  Defines preformatted text
THANK YOU

More Related Content

PPT
Html Ppt
ODP
Htmltag.ppt
PPT
Html ppt
PPT
Html Intro2
PPT
Html tag
ODP
ODP
Html intro
Html Ppt
Htmltag.ppt
Html ppt
Html Intro2
Html tag
Html intro

What's hot (16)

ODP
Prabu html
PPT
Html Presentation Of Web Page Making
PPT
Introduction to html
PPT
PPT
Intro to html
ODP
The Basics of (X)HTML Tags
PPT
Html Ppt
PPT
Semantically Correct And Standards Compliance Html
PPT
Learning HTML
PPT
Html ppt computer
PDF
Basic Html Notes
PPT
Presentation on HTML
PPT
PPTX
Introduction to html
Prabu html
Html Presentation Of Web Page Making
Introduction to html
Intro to html
The Basics of (X)HTML Tags
Html Ppt
Semantically Correct And Standards Compliance Html
Learning HTML
Html ppt computer
Basic Html Notes
Presentation on HTML
Introduction to html
Ad

Viewers also liked (20)

PDF
Linux Hosting Training Course Level 1-2
PPT
PDF
Slide 1
PPT
SureMail: Notification Overlay for Email Reliability
PPTX
setting Dns linux debian
PPT
SureMail: Notification Overlay for Email Reliability
PPT
Managing Diverse IT Infrastructure
PPT
Parallels Hosting Products
PPS
IT Power Management Strategy
PPT
PPT
Slide 1 - Parallels Plesk Control Panel 8.6.0
PPT
Get your website noticed by Jason King of HAVS
PPT
PPT
Microsoft PowerPoint presentation 2.175 Mb
PPT
Class Presentation
PDF
Installing web sphere application server v7 on red hat enterprise linux v6.3
PPT
OLUG_xen.ppt
Linux Hosting Training Course Level 1-2
Slide 1
SureMail: Notification Overlay for Email Reliability
setting Dns linux debian
SureMail: Notification Overlay for Email Reliability
Managing Diverse IT Infrastructure
Parallels Hosting Products
IT Power Management Strategy
Slide 1 - Parallels Plesk Control Panel 8.6.0
Get your website noticed by Jason King of HAVS
Microsoft PowerPoint presentation 2.175 Mb
Class Presentation
Installing web sphere application server v7 on red hat enterprise linux v6.3
OLUG_xen.ppt
Ad

Similar to Html (20)

ODP
Html intro
PPT
Understanding THML
PPT
Html TAGS
PPT
PPT
Diva
ODP
ODP
PPT
Web Development using HTML & CSS
PPT
Introduction to html
PPT
AK html
PPT
Html part2
PPT
Html part2 (1)
PPT
Lecture 4
PPT
Html tutorial
PPTX
Module 2
PPTX
Html5 final
PPT
Lect_html1
PPT
HTML
Html intro
Understanding THML
Html TAGS
Diva
Web Development using HTML & CSS
Introduction to html
AK html
Html part2
Html part2 (1)
Lecture 4
Html tutorial
Module 2
Html5 final
Lect_html1
HTML

Recently uploaded (20)

PDF
Zenith AI: Advanced Artificial Intelligence
PDF
Heart disease approach using modified random forest and particle swarm optimi...
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
Mushroom cultivation and it's methods.pdf
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PDF
Encapsulation theory and applications.pdf
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
DP Operators-handbook-extract for the Mautical Institute
PPTX
A Presentation on Touch Screen Technology
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
PPTX
1. Introduction to Computer Programming.pptx
Zenith AI: Advanced Artificial Intelligence
Heart disease approach using modified random forest and particle swarm optimi...
Encapsulation_ Review paper, used for researhc scholars
Univ-Connecticut-ChatGPT-Presentaion.pdf
NewMind AI Weekly Chronicles - August'25-Week II
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Mushroom cultivation and it's methods.pdf
Group 1 Presentation -Planning and Decision Making .pptx
Encapsulation theory and applications.pdf
Unlocking AI with Model Context Protocol (MCP)
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
DP Operators-handbook-extract for the Mautical Institute
A Presentation on Touch Screen Technology
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
SOPHOS-XG Firewall Administrator PPT.pptx
Digital-Transformation-Roadmap-for-Companies.pptx
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
1. Introduction to Computer Programming.pptx

Html

  • 2. INTRODUCTION HTML stands for Hyper Text Markup Language predominant markup language for web pages Developed by World Wide Web Consortium & WHATWG Type of format Markup language
  • 3. HTML Tags HTML markup tags are usually called HTML tags HTML tags are keywords surrounded by angle brackets like <html> HTML tags normally come in pairs like <b> and </b> The first tag in a pair is the start tag, the second tag is the end tag Start and end tags are also called opening tags and closing tags HTML tags are not case sensitive
  • 4. HTML Headings HTML headings are defined with the <h1> to <h6> tags. HTML Paragraphs HTML paragraphs are defined with the <p> tag. HTML Links HTML links are defined with the <a> tag. HTML Images HTML images are defined with the <img> tag. HTML Comments Comments can be inserted in the HTML code to make it more readable and understandable but they are ignored by the browser and are not displayed.
  • 5. HTML Element An HTML element starts with a start tag / opening tag and ends with an end tag / closing tag The element content is everything between the start and the end tag Some HTML elements have empty content . Eg.line break Empty elements are closed in the start tag Most HTML elements can have attributes
  • 6. HTML Attributes Attributes provide additional information about the element Attributes are always specified in the start tag Attributes come in name/value pairs like: name=&quot;value&quot; HTML links are defined with the <a> tag. Eg. <a href=&quot;http://www.w3schools.com&quot;>This is a link</a>
  • 7. HTML Styles Styles was introduced to style HTML elements using the style attribute, or indirectly in separate style sheets (CSS) Style Examples: Background Color Font Family, Color and Size Text Alignment
  • 8. HTML Links Link syntax: <a href=&quot;url&quot;>Link text</a> A hyperlink is an address to a resource on the web. An anchor is a term used to define a hyperlink destination inside a document. The HTML anchor element <a>, is used to define both hyperlinks and anchors.
  • 9. 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 &quot;source&quot;. The value of the src attribute is the URL of the image The syntax of defining an image: <img src=&quot;url&quot; /> The browser puts the image where the image tag occurs in the document. The alt attribute is used to define an &quot;alternate text&quot; for an image. The &quot;alt&quot; attribute gives information of what is missing on a page if the browser can't load images.
  • 10. 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 &quot;table data,&quot; which is the content of a data cell. Headings in a Table Headings in a table are defined with the <th> tag.
  • 11. HTML Lists Unordered Lists An unordered list is a list of items marked with bullets. An unordered list starts with the <ul> tag. Each list item starts with the <li> tag. <ul> <li>Coffee</li> </ul> Coffee
  • 12. 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. <ol> <li>Coffee</li> </ol> 1.Coffee
  • 13. Definition Lists 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 ( d efinition l ist). Each term starts with a <dt> tag ( d efinition t erm). Each description starts with a <dd> tag ( d efinition d escription). <dl> <dt>Coffee</dt> <dd>Black hot drink</dd> </dl> Coffee Black hot drink
  • 14. HTML Forms and Input 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 &quot;Submit&quot; button, the content of the form is sent to the server.
  • 15. HTML Colors HTML colors are defined using a hexadecimal notation for the combination of Red, Green, and Blue color values. The lowest value to the light sources is 0 and highest value is 255. Hex values are written as 3 double digit numbers, starting with a # sign. It gives a total of more than 16 million different colors to play with (256 x 256 x 256).
  • 16. HTML Frames With frames, we can display more than one HTML document in the same browser window. Each HTML document is called a frame, and each frame is independent of the others. The <frameset> tag defines how to divide the window into frames The <frame> tag defines what HTML document to put into each frame The disadvantages of using frames are: The web developer must keep track of more HTML documents It is difficult to print the entire page
  • 17. TAG DESCRIPTION <!--...--> Defines a comment <!DOCTYPE>   Defines the document type <a> Defines an anchor < abbr > Defines an abbreviation <acronym> Defines an acronym <address> Defines contact information for the author/owner of a document <applet> Deprecated. Defines an embedded applet <area /> Defines an area inside an image-map <b> Defines bold text <base /> Defines a default address or a default target for all links on a page < basefont /> Deprecated. Defines a default font, color, or size for the text in a page < bdo > Defines the text direction <big> Defines big text < blockquote > Defines a long quotation <body> Defines the document's body < br /> Defines a single line break STF <button> Defines a push button STF
  • 18. <caption> Defines a table caption <center> Deprecated. Defines centered text <cite> Defines a citation <code> Defines computer code text < col /> Defines attribute values for one or more columns in a table  < colgroup > Defines a group of columns in a table for formatting < dd > Defines a description of a term in a definition list <del> Defines deleted text < dfn > Defines a definition term <dir> Deprecated. Defines a directory list <div> Defines a section in a document <dl> Defines a definition list < dt > Defines a term (an item) in a definition list < em > Defines emphasized text  < fieldset > Defines a border around elements in a form <font> Deprecated. Defines font, color, and size for text <form> Defines an HTML form for user input <frame /> Defines a window (a frame) in a frameset
  • 19. <h1> to <h6> Defines HTML headings <head> Defines information about the document <hr /> Defines a horizontal line <html> Defines an HTML document <i> Defines italic text < iframe > Defines an inline frame < img /> Defines an image <input /> Defines an input control <ins> Defines inserted text <isindex> Deprecated. Defines a searchable index related to a document < kbd > Defines keyboard text <label> Defines a label for an input element <legend> Defines a caption for a fieldset element < li > Defines a list item <link /> Defines the relationship between a document and an external resource <map> Defines an image-map  <menu> Deprecated. Defines a menu list <meta /> Defines metadata about an HTML document < noframes > Defines an alternate content for users that do not support frames
  • 20. < noscript > Defines an alternate content for users that do not support client-side scripts <object> Defines an embedded object < ol > Defines an ordered list < optgroup > Defines a group of related options in a select list <option> Defines an option in a select list <p> Defines a paragraph < param /> Defines a parameter for an object <pre> Defines preformatted text <q> Defines a short quotation <s> Deprecated. Defines strikethrough text < samp > Defines sample computer code <script> Defines a client-side script <select> Defines a select list (drop-down list) <small> Defines small text <span> Defines a section in a document <strike> Deprecated. Defines strikethrough text <strong> Defines strong text <sup> Defines superscripted text
  • 21. <style> Defines style information for a document <sub> Defines subscripted text <sup> Defines superscripted text <table> Defines a table < tbody > Groups the body content in a table <td> Defines a cell in a table < textarea > Defines a multi-line text input control < tfoot > Groups the footer content in a table < th > Defines a header cell in a table <thead> Groups the header content in a table <title> Defines the title of a document <tr> Defines a row in a table <tt> Defines teletype text <u> Deprecated. Defines underlined text <ul> Defines an unordered list <var> Defines a variable part of a text <xmp> Deprecated. Defines preformatted text