Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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

What's hot

Prabu html
Prabu htmlPrabu html
Prabu html
Prabu Cse
 
Html Presentation Of Web Page Making
Html Presentation Of Web Page MakingHtml Presentation Of Web Page Making
Html Presentation Of Web Page Making
Sandeep Supal
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
vikasgaur31
 
Html
HtmlHtml
Html
HtmlHtml
Standard html tags
Standard html tagsStandard html tags
Intro to html
Intro to htmlIntro to html
Intro to html
anshuman rahi
 
The Basics of (X)HTML Tags
The Basics of (X)HTML TagsThe Basics of (X)HTML Tags
The Basics of (X)HTML Tags
LearningNerd
 
Html Ppt
Html PptHtml Ppt
Html Ppt
vijayanit
 
Semantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance HtmlSemantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance Html
sanjay2211
 
Learning HTML
Learning HTMLLearning HTML
Learning HTML
Md. Sirajus Salayhin
 
Html ppt computer
Html ppt computerHtml ppt computer
Html ppt computer
Anmol Pant
 
Basic Html Notes
Basic Html NotesBasic Html Notes
Basic Html Notes
NextGenr
 
Presentation on HTML
Presentation on HTMLPresentation on HTML
Presentation on HTML
satvirsandhu9
 
Html
HtmlHtml
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
veena parihar
 

What's hot (16)

Prabu html
Prabu htmlPrabu html
Prabu html
 
Html Presentation Of Web Page Making
Html Presentation Of Web Page MakingHtml Presentation Of Web Page Making
Html Presentation Of Web Page Making
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Standard html tags
Standard html tagsStandard html tags
Standard html tags
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
The Basics of (X)HTML Tags
The Basics of (X)HTML TagsThe Basics of (X)HTML Tags
The Basics of (X)HTML Tags
 
Html Ppt
Html PptHtml Ppt
Html Ppt
 
Semantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance HtmlSemantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance Html
 
Learning HTML
Learning HTMLLearning HTML
Learning HTML
 
Html ppt computer
Html ppt computerHtml ppt computer
Html ppt computer
 
Basic Html Notes
Basic Html NotesBasic Html Notes
Basic Html Notes
 
Presentation on HTML
Presentation on HTMLPresentation on HTML
Presentation on HTML
 
Html
HtmlHtml
Html
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 

Viewers also liked

Css
CssCss
Linux Hosting Training Course Level 1-2
Linux Hosting Training Course Level 1-2Linux Hosting Training Course Level 1-2
Linux Hosting Training Course Level 1-2
Ramy Allam
 
PL WEB
PL WEBPL WEB
Slide 1
Slide 1Slide 1
Slide 1
webhostingguy
 
SureMail: Notification Overlay for Email Reliability
SureMail: Notification Overlay for Email ReliabilitySureMail: Notification Overlay for Email Reliability
SureMail: Notification Overlay for Email Reliability
webhostingguy
 
setting Dns linux debian
setting Dns linux debiansetting Dns linux debian
setting Dns linux debian
Arga Prahara
 
SureMail: Notification Overlay for Email Reliability
SureMail: Notification Overlay for Email ReliabilitySureMail: Notification Overlay for Email Reliability
SureMail: Notification Overlay for Email Reliability
webhostingguy
 
Managing Diverse IT Infrastructure
Managing Diverse IT InfrastructureManaging Diverse IT Infrastructure
Managing Diverse IT Infrastructure
webhostingguy
 
Parallels Hosting Products
Parallels Hosting ProductsParallels Hosting Products
Parallels Hosting Products
webhostingguy
 
IT Power Management Strategy
IT Power Management Strategy IT Power Management Strategy
IT Power Management Strategy
webhostingguy
 
Notes8
Notes8Notes8
Slide 1 - Parallels Plesk Control Panel 8.6.0
Slide 1 - Parallels Plesk Control Panel 8.6.0Slide 1 - Parallels Plesk Control Panel 8.6.0
Slide 1 - Parallels Plesk Control Panel 8.6.0
webhostingguy
 
Get your website noticed by Jason King of HAVS
Get your website noticed by Jason King of HAVSGet your website noticed by Jason King of HAVS
Get your website noticed by Jason King of HAVS
webhostingguy
 
Web 2.0
Web 2.0Web 2.0
Microsoft PowerPoint presentation 2.175 Mb
Microsoft PowerPoint presentation 2.175 MbMicrosoft PowerPoint presentation 2.175 Mb
Microsoft PowerPoint presentation 2.175 Mb
webhostingguy
 
Ajax
AjaxAjax
Class Presentation
Class PresentationClass Presentation
Class Presentation
webhostingguy
 
#1
#1#1
Installing web sphere application server v7 on red hat enterprise linux v6.3
Installing web sphere application server v7 on red hat enterprise linux v6.3Installing web sphere application server v7 on red hat enterprise linux v6.3
Installing web sphere application server v7 on red hat enterprise linux v6.3
Dave Hay
 
OLUG_xen.ppt
OLUG_xen.pptOLUG_xen.ppt
OLUG_xen.ppt
webhostingguy
 

Viewers also liked (20)

Css
CssCss
Css
 
Linux Hosting Training Course Level 1-2
Linux Hosting Training Course Level 1-2Linux Hosting Training Course Level 1-2
Linux Hosting Training Course Level 1-2
 
PL WEB
PL WEBPL WEB
PL WEB
 
Slide 1
Slide 1Slide 1
Slide 1
 
SureMail: Notification Overlay for Email Reliability
SureMail: Notification Overlay for Email ReliabilitySureMail: Notification Overlay for Email Reliability
SureMail: Notification Overlay for Email Reliability
 
setting Dns linux debian
setting Dns linux debiansetting Dns linux debian
setting Dns linux debian
 
SureMail: Notification Overlay for Email Reliability
SureMail: Notification Overlay for Email ReliabilitySureMail: Notification Overlay for Email Reliability
SureMail: Notification Overlay for Email Reliability
 
Managing Diverse IT Infrastructure
Managing Diverse IT InfrastructureManaging Diverse IT Infrastructure
Managing Diverse IT Infrastructure
 
Parallels Hosting Products
Parallels Hosting ProductsParallels Hosting Products
Parallels Hosting Products
 
IT Power Management Strategy
IT Power Management Strategy IT Power Management Strategy
IT Power Management Strategy
 
Notes8
Notes8Notes8
Notes8
 
Slide 1 - Parallels Plesk Control Panel 8.6.0
Slide 1 - Parallels Plesk Control Panel 8.6.0Slide 1 - Parallels Plesk Control Panel 8.6.0
Slide 1 - Parallels Plesk Control Panel 8.6.0
 
Get your website noticed by Jason King of HAVS
Get your website noticed by Jason King of HAVSGet your website noticed by Jason King of HAVS
Get your website noticed by Jason King of HAVS
 
Web 2.0
Web 2.0Web 2.0
Web 2.0
 
Microsoft PowerPoint presentation 2.175 Mb
Microsoft PowerPoint presentation 2.175 MbMicrosoft PowerPoint presentation 2.175 Mb
Microsoft PowerPoint presentation 2.175 Mb
 
Ajax
AjaxAjax
Ajax
 
Class Presentation
Class PresentationClass Presentation
Class Presentation
 
#1
#1#1
#1
 
Installing web sphere application server v7 on red hat enterprise linux v6.3
Installing web sphere application server v7 on red hat enterprise linux v6.3Installing web sphere application server v7 on red hat enterprise linux v6.3
Installing web sphere application server v7 on red hat enterprise linux v6.3
 
OLUG_xen.ppt
OLUG_xen.pptOLUG_xen.ppt
OLUG_xen.ppt
 

Similar to Html

Html intro
Html introHtml intro
Html intro
kalaivani.g
 
Understanding THML
Understanding THMLUnderstanding THML
Understanding THML
Hinopak Motors Limited
 
Html TAGS
Html TAGSHtml TAGS
Html TAGS
Pranil Dukare
 
Html
HtmlHtml
Diva
DivaDiva
Diva
diva23
 
Html
HtmlHtml
Html
HtmlHtml
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
Brainware Consultancy Pvt Ltd
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
vikasgaur31
 
AK html
AK  htmlAK  html
AK html
gauravashq
 
Html part2 (1)
Html part2 (1)Html part2 (1)
Html part2 (1)
suba_sqa
 
Html part2
Html part2Html part2
Html part2
suba_sqa
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
uccwebcourses
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
mohamed ashraf
 
Module 2
Module 2Module 2
Module 2
Xiyue Yang
 
Intr To Html & Xhtml
Intr To Html & XhtmlIntr To Html & Xhtml
Html5 final
Html5 finalHtml5 final
Html5 final
saransh_kataria
 
Html
HtmlHtml
Lect_html1
Lect_html1Lect_html1
Lect_html1
ibrahim osama
 
HTML
HTMLHTML
HTML
ARJUN
 

Similar to Html (20)

Html intro
Html introHtml intro
Html intro
 
Understanding THML
Understanding THMLUnderstanding THML
Understanding THML
 
Html TAGS
Html TAGSHtml TAGS
Html TAGS
 
Html
HtmlHtml
Html
 
Diva
DivaDiva
Diva
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
AK html
AK  htmlAK  html
AK html
 
Html part2 (1)
Html part2 (1)Html part2 (1)
Html part2 (1)
 
Html part2
Html part2Html part2
Html part2
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
Module 2
Module 2Module 2
Module 2
 
Intr To Html & Xhtml
Intr To Html & XhtmlIntr To Html & Xhtml
Intr To Html & Xhtml
 
Html5 final
Html5 finalHtml5 final
Html5 final
 
Html
HtmlHtml
Html
 
Lect_html1
Lect_html1Lect_html1
Lect_html1
 
HTML
HTMLHTML
HTML
 

Recently uploaded

Knowledge and Prompt Engineering Part 2 Focus on Prompt Design Approaches
Knowledge and Prompt Engineering Part 2 Focus on Prompt Design ApproachesKnowledge and Prompt Engineering Part 2 Focus on Prompt Design Approaches
Knowledge and Prompt Engineering Part 2 Focus on Prompt Design Approaches
Earley Information Science
 
UiPath Community Day Kraków: Devs4Devs Conference
UiPath Community Day Kraków: Devs4Devs ConferenceUiPath Community Day Kraków: Devs4Devs Conference
UiPath Community Day Kraków: Devs4Devs Conference
UiPathCommunity
 
What’s New in Teams Calling, Meetings and Devices May 2024
What’s New in Teams Calling, Meetings and Devices May 2024What’s New in Teams Calling, Meetings and Devices May 2024
What’s New in Teams Calling, Meetings and Devices May 2024
Stephanie Beckett
 
Implementations of Fused Deposition Modeling in real world
Implementations of Fused Deposition Modeling  in real worldImplementations of Fused Deposition Modeling  in real world
Implementations of Fused Deposition Modeling in real world
Emerging Tech
 
K2G - Insurtech Innovation EMEA Award 2024
K2G - Insurtech Innovation EMEA Award 2024K2G - Insurtech Innovation EMEA Award 2024
K2G - Insurtech Innovation EMEA Award 2024
The Digital Insurer
 
How RPA Help in the Transportation and Logistics Industry.pptx
How RPA Help in the Transportation and Logistics Industry.pptxHow RPA Help in the Transportation and Logistics Industry.pptx
How RPA Help in the Transportation and Logistics Industry.pptx
SynapseIndia
 
Calgary MuleSoft Meetup APM and IDP .pptx
Calgary MuleSoft Meetup APM and IDP .pptxCalgary MuleSoft Meetup APM and IDP .pptx
Calgary MuleSoft Meetup APM and IDP .pptx
ishalveerrandhawa1
 
Observability For You and Me with OpenTelemetry
Observability For You and Me with OpenTelemetryObservability For You and Me with OpenTelemetry
Observability For You and Me with OpenTelemetry
Eric D. Schabell
 
20240702 QFM021 Machine Intelligence Reading List June 2024
20240702 QFM021 Machine Intelligence Reading List June 202420240702 QFM021 Machine Intelligence Reading List June 2024
20240702 QFM021 Machine Intelligence Reading List June 2024
Matthew Sinclair
 
Coordinate Systems in FME 101 - Webinar Slides
Coordinate Systems in FME 101 - Webinar SlidesCoordinate Systems in FME 101 - Webinar Slides
Coordinate Systems in FME 101 - Webinar Slides
Safe Software
 
What's Next Web Development Trends to Watch.pdf
What's Next Web Development Trends to Watch.pdfWhat's Next Web Development Trends to Watch.pdf
What's Next Web Development Trends to Watch.pdf
SeasiaInfotech2
 
Cookies program to display the information though cookie creation
Cookies program to display the information though cookie creationCookies program to display the information though cookie creation
Cookies program to display the information though cookie creation
shanthidl1
 
一比一原版(msvu毕业证书)圣文森山大学毕业证如何办理
一比一原版(msvu毕业证书)圣文森山大学毕业证如何办理一比一原版(msvu毕业证书)圣文森山大学毕业证如何办理
一比一原版(msvu毕业证书)圣文森山大学毕业证如何办理
uuuot
 
Why do You Have to Redesign?_Redesign Challenge Day 1
Why do You Have to Redesign?_Redesign Challenge Day 1Why do You Have to Redesign?_Redesign Challenge Day 1
Why do You Have to Redesign?_Redesign Challenge Day 1
FellyciaHikmahwarani
 
INDIAN AIR FORCE FIGHTER PLANES LIST.pdf
INDIAN AIR FORCE FIGHTER PLANES LIST.pdfINDIAN AIR FORCE FIGHTER PLANES LIST.pdf
INDIAN AIR FORCE FIGHTER PLANES LIST.pdf
jackson110191
 
How to Avoid Learning the Linux-Kernel Memory Model
How to Avoid Learning the Linux-Kernel Memory ModelHow to Avoid Learning the Linux-Kernel Memory Model
How to Avoid Learning the Linux-Kernel Memory Model
ScyllaDB
 
@Call @Girls Pune 0000000000 Riya Khan Beautiful Girl any Time
@Call @Girls Pune 0000000000 Riya Khan Beautiful Girl any Time@Call @Girls Pune 0000000000 Riya Khan Beautiful Girl any Time
@Call @Girls Pune 0000000000 Riya Khan Beautiful Girl any Time
amitchopra0215
 
Performance Budgets for the Real World by Tammy Everts
Performance Budgets for the Real World by Tammy EvertsPerformance Budgets for the Real World by Tammy Everts
Performance Budgets for the Real World by Tammy Everts
ScyllaDB
 
Details of description part II: Describing images in practice - Tech Forum 2024
Details of description part II: Describing images in practice - Tech Forum 2024Details of description part II: Describing images in practice - Tech Forum 2024
Details of description part II: Describing images in practice - Tech Forum 2024
BookNet Canada
 
Scaling Connections in PostgreSQL Postgres Bangalore(PGBLR) Meetup-2 - Mydbops
Scaling Connections in PostgreSQL Postgres Bangalore(PGBLR) Meetup-2 - MydbopsScaling Connections in PostgreSQL Postgres Bangalore(PGBLR) Meetup-2 - Mydbops
Scaling Connections in PostgreSQL Postgres Bangalore(PGBLR) Meetup-2 - Mydbops
Mydbops
 

Recently uploaded (20)

Knowledge and Prompt Engineering Part 2 Focus on Prompt Design Approaches
Knowledge and Prompt Engineering Part 2 Focus on Prompt Design ApproachesKnowledge and Prompt Engineering Part 2 Focus on Prompt Design Approaches
Knowledge and Prompt Engineering Part 2 Focus on Prompt Design Approaches
 
UiPath Community Day Kraków: Devs4Devs Conference
UiPath Community Day Kraków: Devs4Devs ConferenceUiPath Community Day Kraków: Devs4Devs Conference
UiPath Community Day Kraków: Devs4Devs Conference
 
What’s New in Teams Calling, Meetings and Devices May 2024
What’s New in Teams Calling, Meetings and Devices May 2024What’s New in Teams Calling, Meetings and Devices May 2024
What’s New in Teams Calling, Meetings and Devices May 2024
 
Implementations of Fused Deposition Modeling in real world
Implementations of Fused Deposition Modeling  in real worldImplementations of Fused Deposition Modeling  in real world
Implementations of Fused Deposition Modeling in real world
 
K2G - Insurtech Innovation EMEA Award 2024
K2G - Insurtech Innovation EMEA Award 2024K2G - Insurtech Innovation EMEA Award 2024
K2G - Insurtech Innovation EMEA Award 2024
 
How RPA Help in the Transportation and Logistics Industry.pptx
How RPA Help in the Transportation and Logistics Industry.pptxHow RPA Help in the Transportation and Logistics Industry.pptx
How RPA Help in the Transportation and Logistics Industry.pptx
 
Calgary MuleSoft Meetup APM and IDP .pptx
Calgary MuleSoft Meetup APM and IDP .pptxCalgary MuleSoft Meetup APM and IDP .pptx
Calgary MuleSoft Meetup APM and IDP .pptx
 
Observability For You and Me with OpenTelemetry
Observability For You and Me with OpenTelemetryObservability For You and Me with OpenTelemetry
Observability For You and Me with OpenTelemetry
 
20240702 QFM021 Machine Intelligence Reading List June 2024
20240702 QFM021 Machine Intelligence Reading List June 202420240702 QFM021 Machine Intelligence Reading List June 2024
20240702 QFM021 Machine Intelligence Reading List June 2024
 
Coordinate Systems in FME 101 - Webinar Slides
Coordinate Systems in FME 101 - Webinar SlidesCoordinate Systems in FME 101 - Webinar Slides
Coordinate Systems in FME 101 - Webinar Slides
 
What's Next Web Development Trends to Watch.pdf
What's Next Web Development Trends to Watch.pdfWhat's Next Web Development Trends to Watch.pdf
What's Next Web Development Trends to Watch.pdf
 
Cookies program to display the information though cookie creation
Cookies program to display the information though cookie creationCookies program to display the information though cookie creation
Cookies program to display the information though cookie creation
 
一比一原版(msvu毕业证书)圣文森山大学毕业证如何办理
一比一原版(msvu毕业证书)圣文森山大学毕业证如何办理一比一原版(msvu毕业证书)圣文森山大学毕业证如何办理
一比一原版(msvu毕业证书)圣文森山大学毕业证如何办理
 
Why do You Have to Redesign?_Redesign Challenge Day 1
Why do You Have to Redesign?_Redesign Challenge Day 1Why do You Have to Redesign?_Redesign Challenge Day 1
Why do You Have to Redesign?_Redesign Challenge Day 1
 
INDIAN AIR FORCE FIGHTER PLANES LIST.pdf
INDIAN AIR FORCE FIGHTER PLANES LIST.pdfINDIAN AIR FORCE FIGHTER PLANES LIST.pdf
INDIAN AIR FORCE FIGHTER PLANES LIST.pdf
 
How to Avoid Learning the Linux-Kernel Memory Model
How to Avoid Learning the Linux-Kernel Memory ModelHow to Avoid Learning the Linux-Kernel Memory Model
How to Avoid Learning the Linux-Kernel Memory Model
 
@Call @Girls Pune 0000000000 Riya Khan Beautiful Girl any Time
@Call @Girls Pune 0000000000 Riya Khan Beautiful Girl any Time@Call @Girls Pune 0000000000 Riya Khan Beautiful Girl any Time
@Call @Girls Pune 0000000000 Riya Khan Beautiful Girl any Time
 
Performance Budgets for the Real World by Tammy Everts
Performance Budgets for the Real World by Tammy EvertsPerformance Budgets for the Real World by Tammy Everts
Performance Budgets for the Real World by Tammy Everts
 
Details of description part II: Describing images in practice - Tech Forum 2024
Details of description part II: Describing images in practice - Tech Forum 2024Details of description part II: Describing images in practice - Tech Forum 2024
Details of description part II: Describing images in practice - Tech Forum 2024
 
Scaling Connections in PostgreSQL Postgres Bangalore(PGBLR) Meetup-2 - Mydbops
Scaling Connections in PostgreSQL Postgres Bangalore(PGBLR) Meetup-2 - MydbopsScaling Connections in PostgreSQL Postgres Bangalore(PGBLR) Meetup-2 - Mydbops
Scaling Connections in PostgreSQL Postgres Bangalore(PGBLR) Meetup-2 - Mydbops
 

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