SlideShare a Scribd company logo
Creating Your First
HTML Page :
The HTML Structure
<html>
- The <html> tag is the first
tag used in every HTML page. It
indicates that the content of the
file are in HTML. All the
necessary HTML commands are
included with in <html> tags.
<head>
- The <head> or the header tag
usually serves as a placeholder
for general information about
your HTML page. The page title
and author are most often
placed with in the <head> and
</head> tags. You must never
put any text of your page in the
header.
<body>
- The contents of your HTML
page are enclosed with in your
<body> and </body> tags. This
include text, graphics, links, and
so on.
In its simplest form, your HTML
Structure looks like this:
<html>
<head> Header
<title> HTML Structure
</title>
</head>
<body>
All contents of your HTML
page are placed here.
</body>
</html>
WELL-FORMED TAGS
this is the correct placement of tags within tags:
<tag1><tag2></tag2></tag1>
this is the wrong placement of tags within tags
<tag1><tag2></tag1></tag2>

More Related Content

PDF
Title, heading and paragraph tags
PPT
Html heading
PPTX
HTML Basics 1 workshop
PPTX
Html and its tags
PPTX
Getting into HTML
PDF
Introduction to html
PPT
PPT on Basic HTML Tags
DOCX
CLASS VII COMPUTERS HTML
Title, heading and paragraph tags
Html heading
HTML Basics 1 workshop
Html and its tags
Getting into HTML
Introduction to html
PPT on Basic HTML Tags
CLASS VII COMPUTERS HTML

What's hot (20)

PPTX
Web Page Designing Using HTML
PPT
Presentation on HTML
PPT
HTML Tags
PPTX
Html ppt
PPTX
Learn html Basics
PPTX
Introduction to HTML
PDF
Basic Html Notes
PPTX
Html ppt
PDF
Crash Course Web - HTML Presentation
PPT
HTML_Slideshow1
PPTX
HTML Introduction
PPT
Html Slide Part-1
PPT
Learning Html
PPT
Html ppt
PPT
Introduction to html
PPTX
Html presentation
Web Page Designing Using HTML
Presentation on HTML
HTML Tags
Html ppt
Learn html Basics
Introduction to HTML
Basic Html Notes
Html ppt
Crash Course Web - HTML Presentation
HTML_Slideshow1
HTML Introduction
Html Slide Part-1
Learning Html
Html ppt
Introduction to html
Html presentation
Ad

Similar to Creating your 1st html page (20)

PDF
Html tutorial
PPTX
Html1
PPSX
Html introduction
PPTX
PPTX
Basic tags in html
PPTX
HTML CSS by Anubhav Singh
PDF
HTML Head Section Elements
PPTX
Html
PDF
Html tutorial
PDF
Html tutorial
PDF
PPTX
Introduction to HTML
PPTX
WEBSITE DEVELOPMENT,HTML is the standard markup language for creating Web pag...
PDF
html complete notes
PDF
html compete notes basic to advanced
PPTX
2. HTML Basic unit2 fundamentals of computer
PPTX
HTML, CSS BASICS OF HTML AND CSS USED IN WEBSITE.pptx
DOCX
HTML Notes And Some Attributes
PPTX
Introduction to HTML: Overview and Structure
Html tutorial
Html1
Html introduction
Basic tags in html
HTML CSS by Anubhav Singh
HTML Head Section Elements
Html
Html tutorial
Html tutorial
Introduction to HTML
WEBSITE DEVELOPMENT,HTML is the standard markup language for creating Web pag...
html complete notes
html compete notes basic to advanced
2. HTML Basic unit2 fundamentals of computer
HTML, CSS BASICS OF HTML AND CSS USED IN WEBSITE.pptx
HTML Notes And Some Attributes
Introduction to HTML: Overview and Structure
Ad

More from Sara Corpuz (8)

PPTX
Visual basic coding
PPTX
Program logic formulation
PPTX
Flowcharting and pseudocoding
PPTX
Working with visual basic applications
PPTX
Building visual basic application
PPT
Visual basic
PPTX
PPTX
Working with comparison operators
Visual basic coding
Program logic formulation
Flowcharting and pseudocoding
Working with visual basic applications
Building visual basic application
Visual basic
Working with comparison operators

Recently uploaded (20)

PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
MYSQL Presentation for SQL database connectivity
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Approach and Philosophy of On baking technology
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
Spectroscopy.pptx food analysis technology
PPTX
sap open course for s4hana steps from ECC to s4
PDF
KodekX | Application Modernization Development
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPT
Teaching material agriculture food technology
PPTX
Big Data Technologies - Introduction.pptx
PDF
Machine learning based COVID-19 study performance prediction
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
MYSQL Presentation for SQL database connectivity
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Approach and Philosophy of On baking technology
The Rise and Fall of 3GPP – Time for a Sabbatical?
Mobile App Security Testing_ A Comprehensive Guide.pdf
Spectroscopy.pptx food analysis technology
sap open course for s4hana steps from ECC to s4
KodekX | Application Modernization Development
Building Integrated photovoltaic BIPV_UPV.pdf
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
“AI and Expert System Decision Support & Business Intelligence Systems”
Teaching material agriculture food technology
Big Data Technologies - Introduction.pptx
Machine learning based COVID-19 study performance prediction
Review of recent advances in non-invasive hemoglobin estimation
Unlocking AI with Model Context Protocol (MCP)
20250228 LYD VKU AI Blended-Learning.pptx

Creating your 1st html page

  • 1. Creating Your First HTML Page : The HTML Structure
  • 2. <html> - The <html> tag is the first tag used in every HTML page. It indicates that the content of the file are in HTML. All the necessary HTML commands are included with in <html> tags.
  • 3. <head> - The <head> or the header tag usually serves as a placeholder for general information about your HTML page. The page title and author are most often placed with in the <head> and </head> tags. You must never put any text of your page in the header.
  • 4. <body> - The contents of your HTML page are enclosed with in your <body> and </body> tags. This include text, graphics, links, and so on.
  • 5. In its simplest form, your HTML Structure looks like this: <html> <head> Header <title> HTML Structure </title> </head> <body> All contents of your HTML page are placed here. </body> </html>
  • 6. WELL-FORMED TAGS this is the correct placement of tags within tags: <tag1><tag2></tag2></tag1> this is the wrong placement of tags within tags <tag1><tag2></tag1></tag2>