SlideShare uma empresa Scribd logo
1 de 40
HTML
Source: https://www.w3schools.com/html/default.asp
Prepared by: Engr. Juvywen M. Pollentes
 TOPICS:
HTML Introduction
HTML Editors
HTML Basics
HTML Elements
What is HTML?
 HTML is the standard markup language for creating Web
pages.
 HTML stands for Hyper Text Markup Language
 HTML describes the structure of Web pages using
markup
 HTML elements are the building blocks of HTML pages
 HTML elements are represented by tags.
 HTML tags label pieces of content such as "heading",
"paragraph", "table", and so on.
 Browsers do not display the HTML tags, but use them to
render the content of the page.
A Simple HTML Document
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Example Explained
•The <!DOCTYPE html> declaration defines this document to
be HTML5
•The <html> element is the root element of an HTML page
•The <head> element contains meta information about the
document
•The <title> element specifies a title for the document
•The <body> element contains the visible page content
•The <h1> element defines a large heading
•The <p> element defines a paragraph
HTML Tags
HTML tags are element names surrounded by angle brackets:
<tagname>content goes here...</tagname>
 HTML tags normally come in pairs like <p> and </p>
 The first tag in a pair is the start tag, the second tag is
the end tag
 The end tag is written like the start tag, but with a forward
slash inserted before the tag name
Tip: The start tag is also called the opening tag, and the end
tag the closing tag
Web Browsers
 The purpose of a web browser (Chrome, IE, Firefox,
Safari) is to read HTML documents and display them.
 The browser does not display the HTML tags, but uses
them to determine how to display the document.
HTML Page Structure
Below is a visualization of an HTML page structure:
Note: Only the content inside the <body> section (the white area
above) is displayed in a browser.
The <!DOCTYPE> Declaration
 The <!DOCTYPE> declaration represents the document
type, and helps browsers to display web pages correctly.
 It must only appear once, at the top of the page (before
any HTML tags).
 The <!DOCTYPE> declaration is not case sensitive.
 The <!DOCTYPE> declaration for HTML5 is:
<!DOCTYPE html>
HTML Versions
HTML Editors
Write HTML Using Notepad or TextEdit
 Web pages can be created and modified by using
professional HTML editors.
 However, for learning HTML we recommend a simple text
editor like Notepad (PC) or TextEdit (Mac).
 We believe using a simple text editor is a good way to
learn HTML.
 Follow the four steps below to create your first web page
with Notepad or TextEdit.
Step 1: Open Notepad (PC)
 Windows 8 or later:
 Open the Start Screen (the window symbol at the bottom
left on your screen). Type Notepad.
 Windows 7 or earlier:
 Open Start > Programs > Accessories > Notepad
Step 1: Open TextEdit (Mac)
 Open Finder > Applications > TextEdit
 Also change some preferences to get the application to
save files correctly. In Preferences > Format
> choose "Plain Text"
 Then under "Open and Save", check the box that says
"Ignore rich text commands in HTML files".
 Then open a new document to place the code.
Step 2: Write Some HTML
 Write or copy
some HTML into
Notepad.
Step 3: Save the HTML Page
 Save the file on your computer. Select File > Save as in
the Notepad menu.
 Name the file "index.htm" and set the encoding to UTF-
8 (which is the preferred encoding for HTML files).
You can use either .htm or .html as file extension. There is no
difference, it is up to you.
Step 4: View the HTML Page in Your
Browser
 Open the saved HTML
file in your favorite
browser (double click on
the file, or right-click -
and choose "Open
with").
 The result will look much
like this:
HTML Basic
HTML Documents
 All HTML documents must start with a document type
declaration: <!DOCTYPE html>.
 The HTML document itself begins with <html> and ends
with </html>.
 The visible part of the HTML document is
between <body> and </body>.
HTML Headings
 HTML headings are defined with the <h1> to <h6> tags.
 <h1> defines the most important heading. <h6> defines
the least important heading:
HTML Paragraphs
 HTML paragraphs are defined with the <p> tag:
HTML Links
 HTML links are defined with the <a> tag:
The link's destination is specified in the href attribute.
Attributes are used to provide additional information about HTML
elements.
HTML Images
 HTML images are defined with the <img> tag.
 The source file (src), alternative text (alt), width, and
height are provided as attributes:
HTML Elements
 An HTML element usually consists of a start tag
and end tag, with the content inserted in between:
<tagname>Content goes here...</tagname>
 The HTML element is everything from the start tag to the
end tag:
<p>My first paragraph.</p>
HTML elements with no content are called empty
elements. Empty elements do not have an end tag, such
as the <br> element (which indicates a line break).
Nested HTML Elements
 HTML elements can be nested (elements can contain
elements).
 All HTML documents consist of nested HTML elements.
Example Explained
 The <html> element
defines the whole
document.
 It has a start tag <html>
and an end tag </html>.
 The element content is
another HTML element
(the <body> element).
 The <body> element
defines
the document body.
 It has a start tag
<body> and
an end tag </body>.
 The
element content is
two other HTML
elements (<h1> and
<p>).
 The <h1> element
defines a heading.
 It has a start tag
<h1> and
an end tag </h1>.
 The
element content is:
My First Heading.
 The <p> element
defines
a paragraph.
 It has a start tag
<p> and an end tag
</p>.
 The
element content is:
My first paragraph.
Do Not Forget the End Tag
 Some HTML
elements will display
correctly, even if you
forget the end tag:
Empty HTML Elements
 HTML elements with no content are called empty elements.
 <br> is an empty element without a closing tag (the <br> tag
defines a line break).
 Empty elements can be "closed" in the opening tag like this:
<br />.
 HTML5 does not require empty elements to be closed. But if
you want stricter validation, or if you need to make your
document readable by XML parsers, you must close all HTML
elements properly.
Use Lowercase Tags
 HTML tags are not case sensitive: <P> means the same
as <p>.
 The HTML5 standard does not require lowercase tags,
but W3C recommends lowercase in HTML,
and demands lowercase for stricter document types like
XHTML.
-END-

Mais conteúdo relacionado

Mais procurados

HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
c525600
 

Mais procurados (20)

How to learn HTML in 10 Days
How to learn HTML in 10 DaysHow to learn HTML in 10 Days
How to learn HTML in 10 Days
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
CSS for Beginners
CSS for BeginnersCSS for Beginners
CSS for Beginners
 
Html5 semantics
Html5 semanticsHtml5 semantics
Html5 semantics
 
Html Ppt
Html PptHtml Ppt
Html Ppt
 
html5.ppt
html5.ppthtml5.ppt
html5.ppt
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
 
Html coding
Html codingHtml coding
Html coding
 
HTML (Web) basics for a beginner
HTML (Web) basics for a beginnerHTML (Web) basics for a beginner
HTML (Web) basics for a beginner
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
Html and css
Html and cssHtml and css
Html and css
 
CSS
CSSCSS
CSS
 
Html
HtmlHtml
Html
 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
 
Html images syntax
Html images syntaxHtml images syntax
Html images syntax
 
Html n CSS
Html n CSSHtml n CSS
Html n CSS
 
HTML Semantic Elements
HTML Semantic ElementsHTML Semantic Elements
HTML Semantic Elements
 
1. HTML
1. HTML1. HTML
1. HTML
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
 

Semelhante a HTML5 Topic 1

1 introduction to html
1 introduction to html1 introduction to html
1 introduction to html
myrajendra
 

Semelhante a HTML5 Topic 1 (20)

Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
An introduction to html
An introduction to htmlAn introduction to html
An introduction to html
 
Html - Tutorial
Html - TutorialHtml - Tutorial
Html - Tutorial
 
HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Html presantation
Html presantationHtml presantation
Html presantation
 
Htmlnotes 150323102005-conversion-gate01
Htmlnotes 150323102005-conversion-gate01Htmlnotes 150323102005-conversion-gate01
Htmlnotes 150323102005-conversion-gate01
 
HTML Notes And Some Attributes
HTML Notes And Some AttributesHTML Notes And Some Attributes
HTML Notes And Some Attributes
 
Html basics
Html basicsHtml basics
Html basics
 
Learn html from www
Learn html from wwwLearn html from www
Learn html from www
 
Html5 tutorial
Html5 tutorialHtml5 tutorial
Html5 tutorial
 
Html example
Html exampleHtml example
Html example
 
Html basics NOTE
Html basics NOTEHtml basics NOTE
Html basics NOTE
 
Module 1 - Introduction to HTML.pdf
Module 1 - Introduction to HTML.pdfModule 1 - Introduction to HTML.pdf
Module 1 - Introduction to HTML.pdf
 
Html
HtmlHtml
Html
 
Html basic
Html basicHtml basic
Html basic
 
1. html introduction
1. html introduction1. html introduction
1. html introduction
 
1 introduction to html
1 introduction to html1 introduction to html
1 introduction to html
 

Mais de Juvywen

Mais de Juvywen (16)

Chapter 1 Introduction to Media and Information Literacy
Chapter 1 Introduction to Media and Information LiteracyChapter 1 Introduction to Media and Information Literacy
Chapter 1 Introduction to Media and Information Literacy
 
Chapter 2 Understanding Counselling
Chapter 2 Understanding CounsellingChapter 2 Understanding Counselling
Chapter 2 Understanding Counselling
 
Chapter 1 The Social Sciences and the Applied Social Sciences
Chapter 1 The Social Sciences and the Applied Social SciencesChapter 1 The Social Sciences and the Applied Social Sciences
Chapter 1 The Social Sciences and the Applied Social Sciences
 
Chapter 2 Study Guide- Understanding Counselling
Chapter 2 Study Guide- Understanding CounsellingChapter 2 Study Guide- Understanding Counselling
Chapter 2 Study Guide- Understanding Counselling
 
HTML 5 Topic 2
HTML 5 Topic 2HTML 5 Topic 2
HTML 5 Topic 2
 
Lesson 4 Career Opportunities and Business Ideas in Cooking
Lesson 4 Career Opportunities and Business Ideas in CookingLesson 4 Career Opportunities and Business Ideas in Cooking
Lesson 4 Career Opportunities and Business Ideas in Cooking
 
Lesson 3 Measuring Tools and Techniques
Lesson 3   Measuring Tools and TechniquesLesson 3   Measuring Tools and Techniques
Lesson 3 Measuring Tools and Techniques
 
Lesson 2 Kitchen and Kitchen Layout
Lesson 2   Kitchen and Kitchen LayoutLesson 2   Kitchen and Kitchen Layout
Lesson 2 Kitchen and Kitchen Layout
 
Lesson 1 Basic Cooking Methods and Food Preparation Techniques
Lesson 1   Basic Cooking Methods and Food Preparation TechniquesLesson 1   Basic Cooking Methods and Food Preparation Techniques
Lesson 1 Basic Cooking Methods and Food Preparation Techniques
 
Lesson 7
Lesson 7Lesson 7
Lesson 7
 
Lesson 6
Lesson 6Lesson 6
Lesson 6
 
Lesson 1 2 Edited
Lesson 1 2 EditedLesson 1 2 Edited
Lesson 1 2 Edited
 
Lesson 5 Manipulating Text, Graphics, and Images
Lesson 5 Manipulating Text, Graphics, and ImagesLesson 5 Manipulating Text, Graphics, and Images
Lesson 5 Manipulating Text, Graphics, and Images
 
Lesson 4- Developing ict content for specific purposes
Lesson 4- Developing ict content for specific purposesLesson 4- Developing ict content for specific purposes
Lesson 4- Developing ict content for specific purposes
 
Lesson 3
Lesson 3Lesson 3
Lesson 3
 
LESSON 1, 2 & 3-ETECH 1S
LESSON 1, 2 & 3-ETECH 1SLESSON 1, 2 & 3-ETECH 1S
LESSON 1, 2 & 3-ETECH 1S
 

Último

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 

Último (20)

General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 

HTML5 Topic 1

  • 2.  TOPICS: HTML Introduction HTML Editors HTML Basics HTML Elements
  • 3. What is HTML?  HTML is the standard markup language for creating Web pages.  HTML stands for Hyper Text Markup Language  HTML describes the structure of Web pages using markup  HTML elements are the building blocks of HTML pages
  • 4.  HTML elements are represented by tags.  HTML tags label pieces of content such as "heading", "paragraph", "table", and so on.  Browsers do not display the HTML tags, but use them to render the content of the page.
  • 5. A Simple HTML Document <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>
  • 6. Example Explained •The <!DOCTYPE html> declaration defines this document to be HTML5 •The <html> element is the root element of an HTML page •The <head> element contains meta information about the document •The <title> element specifies a title for the document •The <body> element contains the visible page content •The <h1> element defines a large heading •The <p> element defines a paragraph
  • 7. HTML Tags HTML tags are element names surrounded by angle brackets: <tagname>content goes here...</tagname>  HTML tags normally come in pairs like <p> and </p>  The first tag in a pair is the start tag, the second tag is the end tag  The end tag is written like the start tag, but with a forward slash inserted before the tag name Tip: The start tag is also called the opening tag, and the end tag the closing tag
  • 8. Web Browsers  The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them.  The browser does not display the HTML tags, but uses them to determine how to display the document.
  • 9.
  • 10. HTML Page Structure Below is a visualization of an HTML page structure: Note: Only the content inside the <body> section (the white area above) is displayed in a browser.
  • 11. The <!DOCTYPE> Declaration  The <!DOCTYPE> declaration represents the document type, and helps browsers to display web pages correctly.  It must only appear once, at the top of the page (before any HTML tags).  The <!DOCTYPE> declaration is not case sensitive.  The <!DOCTYPE> declaration for HTML5 is: <!DOCTYPE html>
  • 13. HTML Editors Write HTML Using Notepad or TextEdit  Web pages can be created and modified by using professional HTML editors.  However, for learning HTML we recommend a simple text editor like Notepad (PC) or TextEdit (Mac).  We believe using a simple text editor is a good way to learn HTML.  Follow the four steps below to create your first web page with Notepad or TextEdit.
  • 14. Step 1: Open Notepad (PC)  Windows 8 or later:  Open the Start Screen (the window symbol at the bottom left on your screen). Type Notepad.  Windows 7 or earlier:  Open Start > Programs > Accessories > Notepad
  • 15. Step 1: Open TextEdit (Mac)  Open Finder > Applications > TextEdit  Also change some preferences to get the application to save files correctly. In Preferences > Format > choose "Plain Text"  Then under "Open and Save", check the box that says "Ignore rich text commands in HTML files".  Then open a new document to place the code.
  • 16. Step 2: Write Some HTML  Write or copy some HTML into Notepad.
  • 17.
  • 18. Step 3: Save the HTML Page  Save the file on your computer. Select File > Save as in the Notepad menu.  Name the file "index.htm" and set the encoding to UTF- 8 (which is the preferred encoding for HTML files).
  • 19. You can use either .htm or .html as file extension. There is no difference, it is up to you.
  • 20. Step 4: View the HTML Page in Your Browser  Open the saved HTML file in your favorite browser (double click on the file, or right-click - and choose "Open with").  The result will look much like this:
  • 21. HTML Basic HTML Documents  All HTML documents must start with a document type declaration: <!DOCTYPE html>.  The HTML document itself begins with <html> and ends with </html>.  The visible part of the HTML document is between <body> and </body>.
  • 22.
  • 23. HTML Headings  HTML headings are defined with the <h1> to <h6> tags.  <h1> defines the most important heading. <h6> defines the least important heading:
  • 24. HTML Paragraphs  HTML paragraphs are defined with the <p> tag:
  • 25. HTML Links  HTML links are defined with the <a> tag: The link's destination is specified in the href attribute. Attributes are used to provide additional information about HTML elements.
  • 26.
  • 27. HTML Images  HTML images are defined with the <img> tag.  The source file (src), alternative text (alt), width, and height are provided as attributes:
  • 28.
  • 29. HTML Elements  An HTML element usually consists of a start tag and end tag, with the content inserted in between: <tagname>Content goes here...</tagname>  The HTML element is everything from the start tag to the end tag: <p>My first paragraph.</p>
  • 30. HTML elements with no content are called empty elements. Empty elements do not have an end tag, such as the <br> element (which indicates a line break).
  • 31. Nested HTML Elements  HTML elements can be nested (elements can contain elements).  All HTML documents consist of nested HTML elements.
  • 32.
  • 33. Example Explained  The <html> element defines the whole document.  It has a start tag <html> and an end tag </html>.  The element content is another HTML element (the <body> element).
  • 34.  The <body> element defines the document body.  It has a start tag <body> and an end tag </body>.  The element content is two other HTML elements (<h1> and <p>).
  • 35.  The <h1> element defines a heading.  It has a start tag <h1> and an end tag </h1>.  The element content is: My First Heading.
  • 36.  The <p> element defines a paragraph.  It has a start tag <p> and an end tag </p>.  The element content is: My first paragraph.
  • 37. Do Not Forget the End Tag  Some HTML elements will display correctly, even if you forget the end tag:
  • 38. Empty HTML Elements  HTML elements with no content are called empty elements.  <br> is an empty element without a closing tag (the <br> tag defines a line break).  Empty elements can be "closed" in the opening tag like this: <br />.  HTML5 does not require empty elements to be closed. But if you want stricter validation, or if you need to make your document readable by XML parsers, you must close all HTML elements properly.
  • 39. Use Lowercase Tags  HTML tags are not case sensitive: <P> means the same as <p>.  The HTML5 standard does not require lowercase tags, but W3C recommends lowercase in HTML, and demands lowercase for stricter document types like XHTML.
  • 40. -END-

Notas do Editor

  1. HTML5 Tutorial With HTML you can create your own Web site.
  2. "Markup language" refers to the way tags are used to define the page layout and elements within the page. Markup-structure
  3. Metadata is data (information) about data. The <meta> tag provides metadata about the HTMLdocument. Metadata will not be displayed on the page, but will be machine parsable. Meta elements are typically used to specify page description, keywords, author of the document, last modified, and other metadata.
  4. Definition of: HREF. HREF. (Hypertext REFerence) The HTML code used to create a link to another page. The HREF is an attribute of the anchor tag, which is also used to identify sections within a document.
  5. An HTML attribute is a modifier of an HTML element type. An attribute either modifies the default functionality of an element type or provides functionality to certain element types unable to function correctly without them. In HTML syntax, anattribute is added to an HTML start tag. src and srcset. New in HTML5 is an image attribute named srcset . This attribute is used to define a list of image source files, along with sizing information, so that the browser can select the most appropriate option. When the srcset attribute is set, thesrc files will be used as a “fallback” or “default” image. Alt text (alternative text) is a word or phrase that can be inserted as an attribute in an HTML (Hypertext Markup Language) document to tell Web site viewers the nature or contents of an image. ... An alt attribute starts out with the character sequence alt= and then contains the alt text within quotation marks.
  6. Chapter Summary Use the HTML <img> element to define an image. Use the HTML src attribute to define the URL of the image. Use the HTML alt attribute to define an alternate text for an image, if it cannot be displayed. Use the HTML width and height attributes to define the size of the image.
  7. An HTML element is an individual component of an HTML document or web page, once this has been parsed into the Document Object Model. HTML is composed of a tree of HTML nodes, such as text nodes. Each node can have HTML attributes specified.
  8. This example contains four HTML elements:
  9. According to the XML DOM, everything in an XML document is a node: The entire document is a document node. Every XML element is an elementnode. The text in the XML elements are text nodes. Every attribute is an attribute node. -The example above works in all browsers, because the closing tag is considered optional. Never rely on this. It might produce unexpected results and/or errors if you forget the end tag.