ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
How an XHTML file is structuredThis slide show should help you understand how an xhtml file should be structured.
<html>The finished xhtml fileThe diagram on the right shows you how a finished xhtml file should be structured.We will go through this from the beginning to help you understand.<head><title><body>
<html>Starting point – the <html> tagOnce you have an blank Notepad document open, the first thing you need to do is type:<html></html>This creates the first layer – as shown on the right.We will be adding more layers inside this.The <html> tags wraps around all of the other tags we use. Your web page, then, needs to start with
Two SectionsThe next thing we do is split the document in to two sections:The headThe bodyYour code at this stage should now look like this:<html><head></head><body></body></html>Can you see that the <html> tags wrap around the <head> and <body> tags? They enclose the head and body sections (see diagram right).<html><head><body>
Reminder!The <body> section is where you put the content of your page. This includes your headers, paragraphs, lists, links etc. This is the page the visitor to your web site reads.The <head> section is where extra information goes. This includes the <title> tag which tells the browser what to show in the title bar of your web browser.<html><head><body>
<html>The <title> tagThe next thing we add is the title tag. This goes between the <head> tags.Your code at this point should now look like:<html><head> <title>Page title goes here</title></head><body></body></html>Notice that the title tag is indented. This makes your code easier to read.<head><title><body>
About the <title> tag.Try to remember that the <title> tag is different to the headings you use in your content.Text that appears between the <title> tags appears in the title bar and on the tabs of the web browser displaying your page. See the example to the right.In this example, the <title> tags would read:<title>BBC – Homepage</title>Hopefully this makes sense.
<html>And that’s the basic structure of a web page.All that remains now is to:Save it using the .html file extensione.g. mypage.htmlAdd content between the <body> tags.<head><title><body>Content goes in here

More Related Content

What's hot (20)

1.3 creating links
1.3 creating links1.3 creating links
1.3 creating links
Bulldogs83
Ìý
Html Get Started
Html Get StartedHtml Get Started
Html Get Started
Ken Abraham Saluta
Ìý
Module 2 Lesson 2
Module 2 Lesson 2Module 2 Lesson 2
Module 2 Lesson 2
claytors
Ìý
M02 un04 p03
M02 un04 p03M02 un04 p03
M02 un04 p03
Intan Jameel
Ìý
1.1 xhtml basics
1.1 xhtml basics1.1 xhtml basics
1.1 xhtml basics
Bulldogs83
Ìý
Html tutorial
Html tutorialHtml tutorial
Html tutorial
mohamed ashraf
Ìý
Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]
Kosie Eloff
Ìý
Html - Tutorial
Html - TutorialHtml - Tutorial
Html - Tutorial
adelaticleanu
Ìý
Over view of html
Over view of htmlOver view of html
Over view of html
Keith Borgonia Manatad
Ìý
YL Intro html
YL Intro htmlYL Intro html
YL Intro html
dilom1986
Ìý
HTML_Day_Two(W3Schools)
HTML_Day_Two(W3Schools)HTML_Day_Two(W3Schools)
HTML_Day_Two(W3Schools)
Rafi Haidari
Ìý
Adding A Link To A Flick’R Photo
Adding A Link To A Flick’R PhotoAdding A Link To A Flick’R Photo
Adding A Link To A Flick’R Photo
Lutie
Ìý
Hour 02
Hour 02Hour 02
Hour 02
dpd
Ìý
Learning HTML
Learning HTMLLearning HTML
Learning HTML
Desarae Veit
Ìý
Basic HTML
Basic HTMLBasic HTML
Basic HTML
Eric Marilag
Ìý
Html_Day_One (W3Schools)
Html_Day_One (W3Schools)Html_Day_One (W3Schools)
Html_Day_One (W3Schools)
Rafi Haidari
Ìý
Basics tags for HTML
Basics tags for HTMLBasics tags for HTML
Basics tags for HTML
vidyamittal
Ìý
Creating A Forensics Webpage
Creating A Forensics WebpageCreating A Forensics Webpage
Creating A Forensics Webpage
Steve Bishop
Ìý
Html
HtmlHtml
Html
Michael Gwyther
Ìý
Lesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and ParagraphsLesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and Paragraphs
Keith Borgonia Manatad
Ìý
1.3 creating links
1.3 creating links1.3 creating links
1.3 creating links
Bulldogs83
Ìý
Module 2 Lesson 2
Module 2 Lesson 2Module 2 Lesson 2
Module 2 Lesson 2
claytors
Ìý
M02 un04 p03
M02 un04 p03M02 un04 p03
M02 un04 p03
Intan Jameel
Ìý
1.1 xhtml basics
1.1 xhtml basics1.1 xhtml basics
1.1 xhtml basics
Bulldogs83
Ìý
Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]
Kosie Eloff
Ìý
Html - Tutorial
Html - TutorialHtml - Tutorial
Html - Tutorial
adelaticleanu
Ìý
YL Intro html
YL Intro htmlYL Intro html
YL Intro html
dilom1986
Ìý
HTML_Day_Two(W3Schools)
HTML_Day_Two(W3Schools)HTML_Day_Two(W3Schools)
HTML_Day_Two(W3Schools)
Rafi Haidari
Ìý
Adding A Link To A Flick’R Photo
Adding A Link To A Flick’R PhotoAdding A Link To A Flick’R Photo
Adding A Link To A Flick’R Photo
Lutie
Ìý
Hour 02
Hour 02Hour 02
Hour 02
dpd
Ìý
Learning HTML
Learning HTMLLearning HTML
Learning HTML
Desarae Veit
Ìý
Html_Day_One (W3Schools)
Html_Day_One (W3Schools)Html_Day_One (W3Schools)
Html_Day_One (W3Schools)
Rafi Haidari
Ìý
Basics tags for HTML
Basics tags for HTMLBasics tags for HTML
Basics tags for HTML
vidyamittal
Ìý
Creating A Forensics Webpage
Creating A Forensics WebpageCreating A Forensics Webpage
Creating A Forensics Webpage
Steve Bishop
Ìý
Lesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and ParagraphsLesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and Paragraphs
Keith Borgonia Manatad
Ìý

Similar to How an html file is structured (20)

HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
Doncho Minkov
Ìý
Html
HtmlHtml
Html
charu gupta
Ìý
Basic HTML
Basic HTMLBasic HTML
Basic HTML
coachhahn
Ìý
How To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My WebHow To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My Web
sritikumar
Ìý
HTML_ºÝºÝߣshow1
HTML_ºÝºÝߣshow1HTML_ºÝºÝߣshow1
HTML_ºÝºÝߣshow1
ldehn
Ìý
Html
HtmlHtml
Html
Cerise Anderson
Ìý
Html Ppt
Html PptHtml Ppt
Html Ppt
Hema Prasanth
Ìý
Html intro
Html introHtml intro
Html intro
kalaivani.g
Ìý
Html intro
Html introHtml intro
Html intro
kalaivani.g
Ìý
Html part2
Html part2Html part2
Html part2
suba_sqa
Ìý
Html part2 (1)
Html part2 (1)Html part2 (1)
Html part2 (1)
suba_sqa
Ìý
Intro to html
Intro to htmlIntro to html
Intro to html
anshuman rahi
Ìý
Intro to html
Intro to htmlIntro to html
Intro to html
anshuman rahi
Ìý
HTML & CSS
HTML & CSSHTML & CSS
HTML & CSS
jlinabary
Ìý
Learning HTML
Learning HTMLLearning HTML
Learning HTML
Md. Sirajus Salayhin
Ìý
1.2 elements and attributes copy (3)
1.2 elements and attributes   copy (3)1.2 elements and attributes   copy (3)
1.2 elements and attributes copy (3)
Bulldogs83
Ìý
1.2 elements and attributes copy (3)
1.2 elements and attributes   copy (3)1.2 elements and attributes   copy (3)
1.2 elements and attributes copy (3)
Bulldogs83
Ìý
Semantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance HtmlSemantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance Html
sanjay2211
Ìý
Web designing using html
Web designing using htmlWeb designing using html
Web designing using html
julicris021488
Ìý
Diva
DivaDiva
Diva
diva23
Ìý
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
Doncho Minkov
Ìý
Basic HTML
Basic HTMLBasic HTML
Basic HTML
coachhahn
Ìý
How To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My WebHow To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My Web
sritikumar
Ìý
HTML_ºÝºÝߣshow1
HTML_ºÝºÝߣshow1HTML_ºÝºÝߣshow1
HTML_ºÝºÝߣshow1
ldehn
Ìý
Html intro
Html introHtml intro
Html intro
kalaivani.g
Ìý
Html intro
Html introHtml intro
Html intro
kalaivani.g
Ìý
Html part2
Html part2Html part2
Html part2
suba_sqa
Ìý
Html part2 (1)
Html part2 (1)Html part2 (1)
Html part2 (1)
suba_sqa
Ìý
HTML & CSS
HTML & CSSHTML & CSS
HTML & CSS
jlinabary
Ìý
1.2 elements and attributes copy (3)
1.2 elements and attributes   copy (3)1.2 elements and attributes   copy (3)
1.2 elements and attributes copy (3)
Bulldogs83
Ìý
1.2 elements and attributes copy (3)
1.2 elements and attributes   copy (3)1.2 elements and attributes   copy (3)
1.2 elements and attributes copy (3)
Bulldogs83
Ìý
Semantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance HtmlSemantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance Html
sanjay2211
Ìý
Web designing using html
Web designing using htmlWeb designing using html
Web designing using html
julicris021488
Ìý
Diva
DivaDiva
Diva
diva23
Ìý

How an html file is structured

  • 1. How an XHTML file is structuredThis slide show should help you understand how an xhtml file should be structured.
  • 2. <html>The finished xhtml fileThe diagram on the right shows you how a finished xhtml file should be structured.We will go through this from the beginning to help you understand.<head><title><body>
  • 3. <html>Starting point – the <html> tagOnce you have an blank Notepad document open, the first thing you need to do is type:<html></html>This creates the first layer – as shown on the right.We will be adding more layers inside this.The <html> tags wraps around all of the other tags we use. Your web page, then, needs to start with
  • 4. Two SectionsThe next thing we do is split the document in to two sections:The headThe bodyYour code at this stage should now look like this:<html><head></head><body></body></html>Can you see that the <html> tags wrap around the <head> and <body> tags? They enclose the head and body sections (see diagram right).<html><head><body>
  • 5. Reminder!The <body> section is where you put the content of your page. This includes your headers, paragraphs, lists, links etc. This is the page the visitor to your web site reads.The <head> section is where extra information goes. This includes the <title> tag which tells the browser what to show in the title bar of your web browser.<html><head><body>
  • 6. <html>The <title> tagThe next thing we add is the title tag. This goes between the <head> tags.Your code at this point should now look like:<html><head> <title>Page title goes here</title></head><body></body></html>Notice that the title tag is indented. This makes your code easier to read.<head><title><body>
  • 7. About the <title> tag.Try to remember that the <title> tag is different to the headings you use in your content.Text that appears between the <title> tags appears in the title bar and on the tabs of the web browser displaying your page. See the example to the right.In this example, the <title> tags would read:<title>BBC – Homepage</title>Hopefully this makes sense.
  • 8. <html>And that’s the basic structure of a web page.All that remains now is to:Save it using the .html file extensione.g. mypage.htmlAdd content between the <body> tags.<head><title><body>Content goes in here