SlideShare a Scribd company logo
1 of 28
Computer Fundamentals
& Internet Part 2
What is HTML?
 HTML is a markup language for describing web documents
(web pages).
 HTML stands for Hyper Text Markup Language
 A markup language is a set of markup tags
 HTML documents are described by HTML tags
 Markup is what HTML tags do to the text inside them. They
mark it as a certain type of text (italicised text, for
example).
 Each HTML tag describes different document content
How does it Work?
 HTML consists of a series of short codes
typed into a text-file by the site author
(tags)
 The text is then saved as a html file
 Viewed through a browser
 Browser reads the file and translates the
text into a visible form
HTML example
• The DOCTYPE declaration defines the document type
to be HTML
• The text between <html> and </html> describes an
HTML document
• The text between <head> and </head> provides
information about the document
• The text between <title> and </title> provides a title
for the document
• The text between <body> and </body> describes the
visible page content
• The text between <h1> and </h1> describes a heading
• The text between <p> and </p> describes a paragraph
Sample Output
HTML Tags
 HTML tags are keywords (tag names) surrounded by angle
brackets:
 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 slash
before the tag name
Web Browsers
Microsoft
Internet Explorer
Mozilla Firefox
Microsoft Edge
Google Chrome
Apple Safari
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
The <!DOCTYPE> Declaration
 The <!DOCTYPE> declaration helps the browser to display a web page
correctly.
 There are different document types on the web.
 To display a document correctly, the browser must know both type and
version.
 The doctype declaration is not case sensitive. All cases are acceptable:
Common Declarations
HTML Versions
HTML Editors
 Notepad
 TextEdit
 Microsoft WebMatrix
 Sublime Text
 Adobe Dreamweaver
HTML Elements
 HTML documents are made up by HTML elements.
 HTML elements are written with a start tag, with an end tag, with the content
in between:
 The HTML element is everything from the start tag to the end tag:
Nested HTML Elements
 HTML elements can be nested (elements can contain elements).
 All HTML documents consist of nested HTML elements.
 This example contains 4 HTML elements:
Don’t forget the End Tag
 Some HTML elements will display correctly, even if you forget the end tag:
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.
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 />.
HTML Attributes
 Attributes provide additional information about HTML
elements.
 HTML elements can have attributes
 Attributes provide additional information about an element
 Attributes are always specified in the start tag
 Attributes come in name/value pairs like: name="value"
The title Attribute
the <p> element has a title
attribute. The value of the
attribute is "About W3Schools"
The href Attribute
 HTML links are defined with the <a> tag. The link address is specified in the
href attribute:
Size Attribute
 HTML images are defined with the <img> tag.
 The filename of the source (src), and the size of the image (width and
height) are all provided as attributes:
 The image size is specified in pixels: width="104" means 104 screen
pixels wide.
The alt Attribute
 The alt attribute specifies an alternative text to be used, when an image
cannot be displayed.
Recommendations
 Always Use Lowercase Attributes
 Always Quote Attribute Values
This will not display correctly, because it contains a space
Single or Double Quotes?
 Double style quotes are the most common in HTML, but single style can also be
used.
 In some situations, when the attribute value itself contains double quotes, it is
necessary to use single quotes:
 Or vice versa:
HTML Attributes - Summary
 All HTML elements can have attributes
 The HTML title attribute provides additional "tool-tip" information
 The HTML href attribute provides address information for links
 The HTML width and height attributes provide size information for
images
 The HTML alt attribute specifies an alternative text to be used, when
an image cannot be displayed
HTML Headings
 Headings are defined with the <h1> to <h6> tags.
 <h1> defines the most important heading. <h6> defines the least important
heading.
 Browsers automatically add some empty space (a margin) before and after
each heading.
HTML Headings
• Use HTML headings for headings only.
Don't use headings to make text BIG or
bold.
• Search engines use your headings to
index the structure and content of your
web pages.
• Users skim your pages by its headings.
It is important to use headings to show
the document structure.
• h1 headings should be main headings,
followed by h2 headings, then the less
important h3, and so on.
HTML Horizontal Rules
 The <hr> tag creates a horizontal line in an HTML page.
 The hr element can be used to separate content:

More Related Content

What's hot

WEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTMLWEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTML
Sneha Mukherjee
 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
eceklu
 

What's hot (20)

1. HTML
1. HTML1. HTML
1. HTML
 
Lecture 2 introduction to html basics
Lecture 2 introduction to html basicsLecture 2 introduction to html basics
Lecture 2 introduction to html basics
 
Web designing using html
Web designing using htmlWeb designing using html
Web designing using html
 
Dynamic html (#1)
Dynamic  html (#1)Dynamic  html (#1)
Dynamic html (#1)
 
Web Page Designing
Web Page DesigningWeb Page Designing
Web Page Designing
 
Html_Day_One (W3Schools)
Html_Day_One (W3Schools)Html_Day_One (W3Schools)
Html_Day_One (W3Schools)
 
Css
CssCss
Css
 
WEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTMLWEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTML
 
HTML Basics by software development company india
HTML Basics by software development company indiaHTML Basics by software development company india
HTML Basics by software development company india
 
Introduction to XHTML
Introduction to XHTMLIntroduction to XHTML
Introduction to XHTML
 
Html programing
Html programingHtml programing
Html programing
 
Html grade 11
Html grade 11Html grade 11
Html grade 11
 
HTML_Day_Two(W3Schools)
HTML_Day_Two(W3Schools)HTML_Day_Two(W3Schools)
HTML_Day_Two(W3Schools)
 
HTML - R.D.Sivakumar
HTML - R.D.SivakumarHTML - R.D.Sivakumar
HTML - R.D.Sivakumar
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Ict html
Ict htmlIct html
Ict html
 
Diva
DivaDiva
Diva
 
Introduction to HTML
Introduction to HTML Introduction to HTML
Introduction to HTML
 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
 
Introduction to XML
Introduction to XMLIntroduction to XML
Introduction to XML
 

Viewers also liked

Tutorial archi cad 7.0
Tutorial archi cad 7.0Tutorial archi cad 7.0
Tutorial archi cad 7.0
imaduddin91
 
Computer fundamentals brr
Computer fundamentals brrComputer fundamentals brr
Computer fundamentals brr
Ragini Bajpai
 
2D CAD Module by gonzalochris
2D CAD Module by gonzalochris2D CAD Module by gonzalochris
2D CAD Module by gonzalochris
Chris Gonzalo
 

Viewers also liked (20)

INTERNET FUNDAMENTALS
INTERNET FUNDAMENTALSINTERNET FUNDAMENTALS
INTERNET FUNDAMENTALS
 
Network and internet fundamental
Network and internet fundamentalNetwork and internet fundamental
Network and internet fundamental
 
Web Terminologies
Web TerminologiesWeb Terminologies
Web Terminologies
 
Tutorial archi cad 7.0
Tutorial archi cad 7.0Tutorial archi cad 7.0
Tutorial archi cad 7.0
 
Computer fundamentals-internet p1
Computer fundamentals-internet p1Computer fundamentals-internet p1
Computer fundamentals-internet p1
 
IoT Summit 2017 - Fundamentals of Internet of Things
IoT Summit 2017 - Fundamentals of Internet of ThingsIoT Summit 2017 - Fundamentals of Internet of Things
IoT Summit 2017 - Fundamentals of Internet of Things
 
Computer fundamentals brr
Computer fundamentals brrComputer fundamentals brr
Computer fundamentals brr
 
An Introduction to Social Networking
An Introduction to Social NetworkingAn Introduction to Social Networking
An Introduction to Social Networking
 
AUTOCAD 2D COURSE
AUTOCAD 2D COURSEAUTOCAD 2D COURSE
AUTOCAD 2D COURSE
 
Computer virus
Computer virusComputer virus
Computer virus
 
CEE81B AutoCAD Practice
CEE81B AutoCAD PracticeCEE81B AutoCAD Practice
CEE81B AutoCAD Practice
 
2D CAD Module by gonzalochris
2D CAD Module by gonzalochris2D CAD Module by gonzalochris
2D CAD Module by gonzalochris
 
Autocad 2d
Autocad 2d Autocad 2d
Autocad 2d
 
Important Comment used in AutoCAD 2D Khmer Guide
Important Comment used in AutoCAD 2D Khmer Guide Important Comment used in AutoCAD 2D Khmer Guide
Important Comment used in AutoCAD 2D Khmer Guide
 
Auto cad apostila 2015
Auto cad apostila 2015 Auto cad apostila 2015
Auto cad apostila 2015
 
Intro to AutoCAD 2016 2D | 08 - panels (modify)
Intro to AutoCAD 2016  2D | 08 - panels (modify)Intro to AutoCAD 2016  2D | 08 - panels (modify)
Intro to AutoCAD 2016 2D | 08 - panels (modify)
 
Intro to AutoCAD 2016 2D | 09 - panels (annotation)
Intro to AutoCAD 2016  2D | 09 - panels (annotation)Intro to AutoCAD 2016  2D | 09 - panels (annotation)
Intro to AutoCAD 2016 2D | 09 - panels (annotation)
 
Computer Fundamentals
Computer FundamentalsComputer Fundamentals
Computer Fundamentals
 
Networking basics Tutorial 1
Networking basics Tutorial 1Networking basics Tutorial 1
Networking basics Tutorial 1
 
AUTOCAD 3D COURSE
AUTOCAD 3D COURSEAUTOCAD 3D COURSE
AUTOCAD 3D COURSE
 

Similar to Computer fundamentals-internet p2

web development.pdf
web development.pdfweb development.pdf
web development.pdf
BagHarki
 

Similar to Computer fundamentals-internet p2 (20)

Introduction to HTML.pptx
Introduction to HTML.pptxIntroduction to HTML.pptx
Introduction to HTML.pptx
 
Html basics
Html basicsHtml basics
Html basics
 
Learn html from www
Learn html from wwwLearn html from www
Learn html from www
 
Tm 1st quarter - 1st meeting
Tm   1st quarter - 1st meetingTm   1st quarter - 1st meeting
Tm 1st quarter - 1st meeting
 
Html
HtmlHtml
Html
 
Html Workshop
Html WorkshopHtml Workshop
Html Workshop
 
Html presentation
Html presentationHtml presentation
Html presentation
 
web development.pdf
web development.pdfweb development.pdf
web development.pdf
 
Html & Html5 from scratch
Html & Html5 from scratchHtml & Html5 from scratch
Html & Html5 from scratch
 
Appdev appdev appdev app devAPPDEV 1.2.pptx
Appdev appdev appdev app devAPPDEV 1.2.pptxAppdev appdev appdev app devAPPDEV 1.2.pptx
Appdev appdev appdev app devAPPDEV 1.2.pptx
 
Web Development 1 (HTML & CSS)
Web Development 1 (HTML & CSS)Web Development 1 (HTML & CSS)
Web Development 1 (HTML & CSS)
 
Html 5
Html 5Html 5
Html 5
 
Html - Tutorial
Html - TutorialHtml - Tutorial
Html - Tutorial
 
Html notes
Html notesHtml notes
Html notes
 
About html
About htmlAbout html
About html
 
Introduction to HTML- Week 3- HTMLSyntax
Introduction to HTML- Week 3- HTMLSyntaxIntroduction to HTML- Week 3- HTMLSyntax
Introduction to HTML- Week 3- HTMLSyntax
 
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
 
Html
HtmlHtml
Html
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
 

More from Leo Mark Villar (11)

Date security identifcation and authentication
Date security   identifcation and authenticationDate security   identifcation and authentication
Date security identifcation and authentication
 
Date security security principles
Date security   security principlesDate security   security principles
Date security security principles
 
Data security authorization and access control
Data security  authorization and access controlData security  authorization and access control
Data security authorization and access control
 
Date security introduction
Date security   introductionDate security   introduction
Date security introduction
 
Data security auditing and accountability
Data security   auditing and accountabilityData security   auditing and accountability
Data security auditing and accountability
 
Web programming
Web programmingWeb programming
Web programming
 
Html
HtmlHtml
Html
 
Team foundation server
Team foundation serverTeam foundation server
Team foundation server
 
Microsoft office 2013
Microsoft office 2013Microsoft office 2013
Microsoft office 2013
 
Sql performance tuning
Sql performance tuningSql performance tuning
Sql performance tuning
 
Angular js
Angular jsAngular js
Angular js
 

Recently uploaded

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Recently uploaded (20)

ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 

Computer fundamentals-internet p2

  • 2. What is HTML?  HTML is a markup language for describing web documents (web pages).  HTML stands for Hyper Text Markup Language  A markup language is a set of markup tags  HTML documents are described by HTML tags  Markup is what HTML tags do to the text inside them. They mark it as a certain type of text (italicised text, for example).  Each HTML tag describes different document content
  • 3. How does it Work?  HTML consists of a series of short codes typed into a text-file by the site author (tags)  The text is then saved as a html file  Viewed through a browser  Browser reads the file and translates the text into a visible form
  • 4. HTML example • The DOCTYPE declaration defines the document type to be HTML • The text between <html> and </html> describes an HTML document • The text between <head> and </head> provides information about the document • The text between <title> and </title> provides a title for the document • The text between <body> and </body> describes the visible page content • The text between <h1> and </h1> describes a heading • The text between <p> and </p> describes a paragraph
  • 6. HTML Tags  HTML tags are keywords (tag names) surrounded by angle brackets:  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 slash before the tag name
  • 7. Web Browsers Microsoft Internet Explorer Mozilla Firefox Microsoft Edge Google Chrome Apple Safari
  • 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:
  • 10. The <!DOCTYPE> Declaration  The <!DOCTYPE> declaration helps the browser to display a web page correctly.  There are different document types on the web.  To display a document correctly, the browser must know both type and version.  The doctype declaration is not case sensitive. All cases are acceptable:
  • 13. HTML Editors  Notepad  TextEdit  Microsoft WebMatrix  Sublime Text  Adobe Dreamweaver
  • 14. HTML Elements  HTML documents are made up by HTML elements.  HTML elements are written with a start tag, with an end tag, with the content in between:  The HTML element is everything from the start tag to the end tag:
  • 15. Nested HTML Elements  HTML elements can be nested (elements can contain elements).  All HTML documents consist of nested HTML elements.  This example contains 4 HTML elements:
  • 16. Don’t forget the End Tag  Some HTML elements will display correctly, even if you forget the end tag: 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.
  • 17. 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 />.
  • 18. HTML Attributes  Attributes provide additional information about HTML elements.  HTML elements can have attributes  Attributes provide additional information about an element  Attributes are always specified in the start tag  Attributes come in name/value pairs like: name="value"
  • 19. The title Attribute the <p> element has a title attribute. The value of the attribute is "About W3Schools"
  • 20. The href Attribute  HTML links are defined with the <a> tag. The link address is specified in the href attribute:
  • 21. Size Attribute  HTML images are defined with the <img> tag.  The filename of the source (src), and the size of the image (width and height) are all provided as attributes:  The image size is specified in pixels: width="104" means 104 screen pixels wide.
  • 22. The alt Attribute  The alt attribute specifies an alternative text to be used, when an image cannot be displayed.
  • 23. Recommendations  Always Use Lowercase Attributes  Always Quote Attribute Values This will not display correctly, because it contains a space
  • 24. Single or Double Quotes?  Double style quotes are the most common in HTML, but single style can also be used.  In some situations, when the attribute value itself contains double quotes, it is necessary to use single quotes:  Or vice versa:
  • 25. HTML Attributes - Summary  All HTML elements can have attributes  The HTML title attribute provides additional "tool-tip" information  The HTML href attribute provides address information for links  The HTML width and height attributes provide size information for images  The HTML alt attribute specifies an alternative text to be used, when an image cannot be displayed
  • 26. HTML Headings  Headings are defined with the <h1> to <h6> tags.  <h1> defines the most important heading. <h6> defines the least important heading.  Browsers automatically add some empty space (a margin) before and after each heading.
  • 27. HTML Headings • Use HTML headings for headings only. Don't use headings to make text BIG or bold. • Search engines use your headings to index the structure and content of your web pages. • Users skim your pages by its headings. It is important to use headings to show the document structure. • h1 headings should be main headings, followed by h2 headings, then the less important h3, and so on.
  • 28. HTML Horizontal Rules  The <hr> tag creates a horizontal line in an HTML page.  The hr element can be used to separate content: