SlideShare a Scribd company logo
9/03 R. Lipera v.2.2 1
Interactive Media Center
http://library.albany.edu/imc/
HTML & XHTML Tag Quick Reference
This reference notes some of the most commonly used HTML and XHTML tags. It is
not, nor is it intended to be, a comprehensive list of available tags. Details regarding the
proper use of XHTML are at the end of this document.
Basic Document Tags
What It Is What It Does
<html></html> Indicates the start and end of an HTML Document
<head></head>
Defines the portion of the document that contains
essential formatting information. The material in the
head is invisible.
<body></body>
Defines the portion of the document that contains the
visible information.
Body Attributes
What It Is What It Does
<body bgcolor=?> Specifies the background color
<body text=?> Specifies the text color
<body link=?> Specifies the color of unfollowed links.
<body vlink=?> Specifies the color of followed links.
<body alink=?> Specifies the color of links when they are clicked.
NOTE: Body attributes may be combined within the body tag. Example:
<body bgcolor="#FFFFFF" text="#000000" link="#0000CC" vlink="#33CC00"
alink="#FF0000">
Text Tags
What It Is What It Does
<hl></hl>,<h2></h2>,
<h3></h3>,<h4></h4>,
<h5></h5>,<h6></h6>
The heading tags display text in sizes ranging from the
largest, h1, to the smallest, h6. These specifications
are intended to denote the importance data below the
heading.
<b></b> Specifies bold text.
<i></i> Specifies italics text.
<tt></tt> Specifies a typewriter or teletype-like text.
<em></em>
Creates an emphasis on text that is rendered usually as
italics, but sometimes as bold depending on the
browser.
<strong></strong>
Creates an emphasis on text that is usually rendered as
bold, but sometimes as italics depending on the
browser.
<font size=?></font>
Specifies the font size from 1 to 7. 1 is the largest, 7
the smallest, and 3 is generally the default size.
<font color=?></font> Specifies font color.
NOTE: Font attributes may be combined within the font tag. Example:
<font size="4" color="#33FF00">Example of combined font attributes. </font>
9/03 R. Lipera v.2.2 2
Interactive Media Center
http://library.albany.edu/imc/
Common Formatting Tags
What It Is (HTML) What It Is
(XHTML)
What It Does
<p></p> Defines a paragraph.
<p align=?>
Defines paragraph alignment left,
right, or center.
<br> <br /> Inserts a line break.
<blockquote></blockquote>
Defines a block quote and indents
text from both sides. Usually with
some extra space above and below.
<ol></ol>
Defines the beginning and end of an
ordered list.
<ul></ul>
Defines the beginning and end of an
unordered list.
<li></li>
Defines the beginning and end of a
line within a list. Start a line with a
number in an ordered list, and with a
bullet in an unordered list.
Image Tags
What It Is (HTML) What It Is (XHTML) What It Does
<img src="name"> <img src="name" /> Places and image.
<img src="name"
align=?>
<img src="name"
align=? />
Specifies the alignment of an image;
left, right, center; bottom, top,
middle
<img src="name"
border=?>
<img src="name"
border=? />
Specifies a border around and
image.
<img src”=name”
alt=”name”>
<img src”=name”
alt=”name” />
Specifies the alternative label for an
image. This is especially important
for use nongraphical browsers.
NOTE: Attributes within the font tag may be combined.
Example in HTML:
<img src="images/fisherman.jpg" width="209" height="214" alt="Our Founder">
Example in XHTML:
<img src="images/fisherman.jpg" width="209" height="214" alt="Our Founder" />
Horizontal Rule Tags
What It Is (HTML) What It Is
(XHTML)
What It Does
<hr> <hr />
Specifies the start of a horizontal
rule.
<hr size=?> <hr size=? />
Specifies the height of a horizontal
rule.
<hr width=?> <hr width=? /> Specifies the width of a horizontal
9/03 R. Lipera v.2.2 3
Interactive Media Center
http://library.albany.edu/imc/
rule in either pixels or percent.
<hr noshade> <hr noshade />
States that the horizontal rule should
have no shade.
NOTE: Attributes within the horizontal rule tag may be combined.
Example in HTML: <hr noshade width="75%" size="4">
Example in XHTML: <hr noshade width="75%" size="4" />
Table Tags
What It Is What It Does
<table></table> Specifies the beginning and end of a table.
<tr></tr> Specifies the beginning and end of a table
row.
<td></td> Specifies the beginning and end of a table
cell.
<th></th> Defines a table header. A normal cell with
text that is bold and centered.
<table border=#> Specifies the size of the border around a
table and cells within the table.
<table cellspacing=#> Specifies the space between cells.
<table cellpadding=#> Specifies the amount of space between the
border of a cell and the items within the
cell.
<table width=”?”> Specifies the width of a table in either
pixels or percent.
<tr align=?> Specifies the alignment of contents in a
row of cells as either left, right, or center.
<td align=?> Specifies the alignment of contents in a cell
as either left, right, or center.
<tr valign=?> Specifies the vertical alignment of contents
in a row of cells as either top, bottom, or
middle.
<td valign=?> Specifies the vertical alignment of contents
in cell as either top, bottom, or middle.
<td colspan=#> Specifies the number of columns a cell will
span.
<td rowspan=#> Specifies the number of rows a cell will
span.
<td nowrap> Stops text from automatically line
wrapping.
9/03 R. Lipera v.2.2 4
Interactive Media Center
http://library.albany.edu/imc/
XHTML can be thought of as an upgraded and stricter version of HTML 4.01. It is not
much more difficult to write XHTML than it is to write properly formed HTML. There
are some simple rules that must be followed. The most important rules are:
• XHTML tags must all be in lower case.
• XHTML elements must be nested correctly.
• All XHTML tag elements must be closed.
• Documents written in XHTML must be well-formed.
Examples of lower case rule:
<STRONG>This is incorrect.</STRONG>
<strong>This is correct.</strong>
Examples of the nesting rule:
<strong><em>This is incorrect nesting.</strong><em>
<strong><em>This is correct nesting.</em></strong>
Examples of the closed tag rule:
This horizontal rule tag is not closed- <hr>
This horizontal rule tag is closed- <hr />
This image tag is not closed- <img source=”/images/picture.jpg” alt=”Cows”>
This image tag is properly closed- <img source=”/images/picture.jpg” alt=”Cows” />
Examples of the well-formed document rule:
XHTML documents must have the proper structure. This means all components
must be within the opening and closing HTML tags, <html></html>. Internal
elements must be correctly nested and located properly. The basic components
and structure of an XHTML document are-
<html>
<head>
</head>
<body>
</body>
</html>
9/03 R. Lipera v.2.2 5
Interactive Media Center
http://library.albany.edu/imc/
XHTML Syntax Rules
XHTML requires that some basic rules of syntax be followed. As with the tag rules
noted above, XHTML syntax is not much more difficult that correctly formed HTML.
These rules are, however, much stricter and must not be violated. These rules follow.
• Attributes must be quoted.
• The Name attribute is replaced by the ID attribute
• Attribute shorthand must not be used.
• DOCTYPE statement must be used. (The DOCTYPE statement is part of
Document Type Definition, DTD, and is used to specify which syntax is used in
the Web page.)
Examples of the quoted attribute rule:
This is incorrect- <table width=75% bgcolor=ff0000>
This is correct- <table width-“75” bgcolor=”ff0000”>
Examples of the Name attribute replacement rule:
This is incorrect- <img src=”/images/cows.jpg” name=”photo12” />
This is the correct substitution- <img src=”/images/cows.jpg” id=”photo12” />
Examples of the no shorthand rule:
This is an example of improper shorthand- <input checked>
This is the same tag correctly written without shorthand- <input
checked=”checked”>
Examples of DOCTYPE statements:
<html>
<head>
<title>This is a page without a statement</title>
</head>
<body>
</body>
</html>
9/03 R. Lipera v.2.2 6
Interactive Media Center
http://library.albany.edu/imc/
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Example of a page with a DOCTYPE statement</title>
</head>
<body>
</body>
</html>
Note that the DOCTYPE statement goes ahead of the opening HTML tag, <html>. The
statement is not part of the HTML document and does not have a closing tag. It is used
to tell a browser how to render the document. There are three DOCTYPE statements.
Statement used to create clutter-free presentations and when Cascading Style Sheets are
used:
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Statement used when HTML presentational features are present and when it is desirable
to support older browsers that do not understand Style Sheets:
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Statement used when frames are incorporated into the design of the page:
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

More Related Content

DOC
Html introduction
PPT
DOCX
PPTX
HTML Basic Tags
DOCX
Html example
PPT
Html ppt computer
ODP
DOCX
html tags
Html introduction
HTML Basic Tags
Html example
Html ppt computer
html tags

What's hot (20)

PPTX
Html Basic Tags
PPTX
Web Application and HTML Summary
PPT
Html basics
PDF
PPT
static dynamic html tags
PPTX
Html basic
PPT
Xhtml
PPTX
Html Workshop
PDF
HTML language and all its tags .....
PPTX
Html ppt
PPTX
HTML | Computer Science
PPT
Understanding THML
PPTX
HTML
PPTX
ODP
Html intro
PPT
Intro Html
PPT
Html tag
PPTX
The Complete HTML
PPT
HTML Tags
Html Basic Tags
Web Application and HTML Summary
Html basics
static dynamic html tags
Html basic
Xhtml
Html Workshop
HTML language and all its tags .....
Html ppt
HTML | Computer Science
Understanding THML
HTML
Html intro
Intro Html
Html tag
The Complete HTML
HTML Tags
Ad

Viewers also liked (15)

PPT
Presentaciónmet1
PDF
Molecular analysis of HRAS and KRAS genes in thyroid cancer in the Greek popu...
PPTX
mercado de valores
DOCX
Post production editing
DOC
Grupo Reifs y la tuna
PPTX
Шаблон презентації проекту
DOCX
Curriculum Vitae
PPTX
Predictive modeling in trucking how critical decisions are made using data
PDF
Cuidar tapa
DOCX
Mapa conceptual gestion de proyectos excelentes
PDF
Caffeine and You
PPTX
KB 2 Deteksi Dini Gangguan Kesehatan Reproduksi
DOCX
Plano de aula - As Faces de vargas
PDF
Unidad 5
Presentaciónmet1
Molecular analysis of HRAS and KRAS genes in thyroid cancer in the Greek popu...
mercado de valores
Post production editing
Grupo Reifs y la tuna
Шаблон презентації проекту
Curriculum Vitae
Predictive modeling in trucking how critical decisions are made using data
Cuidar tapa
Mapa conceptual gestion de proyectos excelentes
Caffeine and You
KB 2 Deteksi Dini Gangguan Kesehatan Reproduksi
Plano de aula - As Faces de vargas
Unidad 5
Ad

Similar to Html xhtml tag-sheet (20)

PDF
Html xhtml tag-sheet
PDF
Html xhtml tag-sheet
PPTX
HTML Tutorials
PPTX
Html
PPT
Htmlppt 100604051515-phpapp01
PPT
introduction to html.ppt
PDF
Wp unit 1 (1)
PPTX
Html presentation
PDF
Web Technologies - Chapter 3 of Front end path.pdf
PPTX
HTML-INTRO.pptx
DOCX
Lesson A.1 - Introduction to Web Development.docx
PPTX
web page.pptxb dvcdhgdhdbdvdhudvehsusvsudb
PPTX
PDF
HTML Basics.pdf
PPT
Introduction to HTML
PDF
web development.pdf
PDF
Html notes
PPTX
Html tags
PDF
Industrial training report
PPTX
WEB PROGRAMMING- Web page creation using HTML Tags
Html xhtml tag-sheet
Html xhtml tag-sheet
HTML Tutorials
Html
Htmlppt 100604051515-phpapp01
introduction to html.ppt
Wp unit 1 (1)
Html presentation
Web Technologies - Chapter 3 of Front end path.pdf
HTML-INTRO.pptx
Lesson A.1 - Introduction to Web Development.docx
web page.pptxb dvcdhgdhdbdvdhudvehsusvsudb
HTML Basics.pdf
Introduction to HTML
web development.pdf
Html notes
Html tags
Industrial training report
WEB PROGRAMMING- Web page creation using HTML Tags

More from Arduino Aficionado (15)

PDF
Garagino doc
PDF
PDF
Scala cheatsheet
PDF
Xm lquickref
PDF
Unix command quickref
PDF
Ruby on rails_cheat_sheet
PDF
Pqrc 2.4-a4-latest
PDF
Nmap5.cheatsheet.eng.v1
PDF
Matlab quickref
PDF
Java quickref
RTF
Eclipse emacskeybindings 3_1
PDF
Refcard en-a4
PDF
Cpp reference sheet
PDF
Core c sharp and .net quick reference
Garagino doc
Scala cheatsheet
Xm lquickref
Unix command quickref
Ruby on rails_cheat_sheet
Pqrc 2.4-a4-latest
Nmap5.cheatsheet.eng.v1
Matlab quickref
Java quickref
Eclipse emacskeybindings 3_1
Refcard en-a4
Cpp reference sheet
Core c sharp and .net quick reference

Recently uploaded (20)

PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Cloud computing and distributed systems.
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Encapsulation theory and applications.pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
cuic standard and advanced reporting.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
Spectroscopy.pptx food analysis technology
PDF
Electronic commerce courselecture one. Pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
MIND Revenue Release Quarter 2 2025 Press Release
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Encapsulation_ Review paper, used for researhc scholars
MYSQL Presentation for SQL database connectivity
Network Security Unit 5.pdf for BCA BBA.
Cloud computing and distributed systems.
Diabetes mellitus diagnosis method based random forest with bat algorithm
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Encapsulation theory and applications.pdf
Reach Out and Touch Someone: Haptics and Empathic Computing
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Understanding_Digital_Forensics_Presentation.pptx
“AI and Expert System Decision Support & Business Intelligence Systems”
The AUB Centre for AI in Media Proposal.docx
cuic standard and advanced reporting.pdf
Chapter 3 Spatial Domain Image Processing.pdf
Spectral efficient network and resource selection model in 5G networks
Spectroscopy.pptx food analysis technology
Electronic commerce courselecture one. Pdf

Html xhtml tag-sheet

  • 1. 9/03 R. Lipera v.2.2 1 Interactive Media Center http://library.albany.edu/imc/ HTML & XHTML Tag Quick Reference This reference notes some of the most commonly used HTML and XHTML tags. It is not, nor is it intended to be, a comprehensive list of available tags. Details regarding the proper use of XHTML are at the end of this document. Basic Document Tags What It Is What It Does <html></html> Indicates the start and end of an HTML Document <head></head> Defines the portion of the document that contains essential formatting information. The material in the head is invisible. <body></body> Defines the portion of the document that contains the visible information. Body Attributes What It Is What It Does <body bgcolor=?> Specifies the background color <body text=?> Specifies the text color <body link=?> Specifies the color of unfollowed links. <body vlink=?> Specifies the color of followed links. <body alink=?> Specifies the color of links when they are clicked. NOTE: Body attributes may be combined within the body tag. Example: <body bgcolor="#FFFFFF" text="#000000" link="#0000CC" vlink="#33CC00" alink="#FF0000"> Text Tags What It Is What It Does <hl></hl>,<h2></h2>, <h3></h3>,<h4></h4>, <h5></h5>,<h6></h6> The heading tags display text in sizes ranging from the largest, h1, to the smallest, h6. These specifications are intended to denote the importance data below the heading. <b></b> Specifies bold text. <i></i> Specifies italics text. <tt></tt> Specifies a typewriter or teletype-like text. <em></em> Creates an emphasis on text that is rendered usually as italics, but sometimes as bold depending on the browser. <strong></strong> Creates an emphasis on text that is usually rendered as bold, but sometimes as italics depending on the browser. <font size=?></font> Specifies the font size from 1 to 7. 1 is the largest, 7 the smallest, and 3 is generally the default size. <font color=?></font> Specifies font color. NOTE: Font attributes may be combined within the font tag. Example: <font size="4" color="#33FF00">Example of combined font attributes. </font>
  • 2. 9/03 R. Lipera v.2.2 2 Interactive Media Center http://library.albany.edu/imc/ Common Formatting Tags What It Is (HTML) What It Is (XHTML) What It Does <p></p> Defines a paragraph. <p align=?> Defines paragraph alignment left, right, or center. <br> <br /> Inserts a line break. <blockquote></blockquote> Defines a block quote and indents text from both sides. Usually with some extra space above and below. <ol></ol> Defines the beginning and end of an ordered list. <ul></ul> Defines the beginning and end of an unordered list. <li></li> Defines the beginning and end of a line within a list. Start a line with a number in an ordered list, and with a bullet in an unordered list. Image Tags What It Is (HTML) What It Is (XHTML) What It Does <img src="name"> <img src="name" /> Places and image. <img src="name" align=?> <img src="name" align=? /> Specifies the alignment of an image; left, right, center; bottom, top, middle <img src="name" border=?> <img src="name" border=? /> Specifies a border around and image. <img src”=name” alt=”name”> <img src”=name” alt=”name” /> Specifies the alternative label for an image. This is especially important for use nongraphical browsers. NOTE: Attributes within the font tag may be combined. Example in HTML: <img src="images/fisherman.jpg" width="209" height="214" alt="Our Founder"> Example in XHTML: <img src="images/fisherman.jpg" width="209" height="214" alt="Our Founder" /> Horizontal Rule Tags What It Is (HTML) What It Is (XHTML) What It Does <hr> <hr /> Specifies the start of a horizontal rule. <hr size=?> <hr size=? /> Specifies the height of a horizontal rule. <hr width=?> <hr width=? /> Specifies the width of a horizontal
  • 3. 9/03 R. Lipera v.2.2 3 Interactive Media Center http://library.albany.edu/imc/ rule in either pixels or percent. <hr noshade> <hr noshade /> States that the horizontal rule should have no shade. NOTE: Attributes within the horizontal rule tag may be combined. Example in HTML: <hr noshade width="75%" size="4"> Example in XHTML: <hr noshade width="75%" size="4" /> Table Tags What It Is What It Does <table></table> Specifies the beginning and end of a table. <tr></tr> Specifies the beginning and end of a table row. <td></td> Specifies the beginning and end of a table cell. <th></th> Defines a table header. A normal cell with text that is bold and centered. <table border=#> Specifies the size of the border around a table and cells within the table. <table cellspacing=#> Specifies the space between cells. <table cellpadding=#> Specifies the amount of space between the border of a cell and the items within the cell. <table width=”?”> Specifies the width of a table in either pixels or percent. <tr align=?> Specifies the alignment of contents in a row of cells as either left, right, or center. <td align=?> Specifies the alignment of contents in a cell as either left, right, or center. <tr valign=?> Specifies the vertical alignment of contents in a row of cells as either top, bottom, or middle. <td valign=?> Specifies the vertical alignment of contents in cell as either top, bottom, or middle. <td colspan=#> Specifies the number of columns a cell will span. <td rowspan=#> Specifies the number of rows a cell will span. <td nowrap> Stops text from automatically line wrapping.
  • 4. 9/03 R. Lipera v.2.2 4 Interactive Media Center http://library.albany.edu/imc/ XHTML can be thought of as an upgraded and stricter version of HTML 4.01. It is not much more difficult to write XHTML than it is to write properly formed HTML. There are some simple rules that must be followed. The most important rules are: • XHTML tags must all be in lower case. • XHTML elements must be nested correctly. • All XHTML tag elements must be closed. • Documents written in XHTML must be well-formed. Examples of lower case rule: <STRONG>This is incorrect.</STRONG> <strong>This is correct.</strong> Examples of the nesting rule: <strong><em>This is incorrect nesting.</strong><em> <strong><em>This is correct nesting.</em></strong> Examples of the closed tag rule: This horizontal rule tag is not closed- <hr> This horizontal rule tag is closed- <hr /> This image tag is not closed- <img source=”/images/picture.jpg” alt=”Cows”> This image tag is properly closed- <img source=”/images/picture.jpg” alt=”Cows” /> Examples of the well-formed document rule: XHTML documents must have the proper structure. This means all components must be within the opening and closing HTML tags, <html></html>. Internal elements must be correctly nested and located properly. The basic components and structure of an XHTML document are- <html> <head> </head> <body> </body> </html>
  • 5. 9/03 R. Lipera v.2.2 5 Interactive Media Center http://library.albany.edu/imc/ XHTML Syntax Rules XHTML requires that some basic rules of syntax be followed. As with the tag rules noted above, XHTML syntax is not much more difficult that correctly formed HTML. These rules are, however, much stricter and must not be violated. These rules follow. • Attributes must be quoted. • The Name attribute is replaced by the ID attribute • Attribute shorthand must not be used. • DOCTYPE statement must be used. (The DOCTYPE statement is part of Document Type Definition, DTD, and is used to specify which syntax is used in the Web page.) Examples of the quoted attribute rule: This is incorrect- <table width=75% bgcolor=ff0000> This is correct- <table width-“75” bgcolor=”ff0000”> Examples of the Name attribute replacement rule: This is incorrect- <img src=”/images/cows.jpg” name=”photo12” /> This is the correct substitution- <img src=”/images/cows.jpg” id=”photo12” /> Examples of the no shorthand rule: This is an example of improper shorthand- <input checked> This is the same tag correctly written without shorthand- <input checked=”checked”> Examples of DOCTYPE statements: <html> <head> <title>This is a page without a statement</title> </head> <body> </body> </html>
  • 6. 9/03 R. Lipera v.2.2 6 Interactive Media Center http://library.albany.edu/imc/ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Example of a page with a DOCTYPE statement</title> </head> <body> </body> </html> Note that the DOCTYPE statement goes ahead of the opening HTML tag, <html>. The statement is not part of the HTML document and does not have a closing tag. It is used to tell a browser how to render the document. There are three DOCTYPE statements. Statement used to create clutter-free presentations and when Cascading Style Sheets are used: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> Statement used when HTML presentational features are present and when it is desirable to support older browsers that do not understand Style Sheets: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Statement used when frames are incorporated into the design of the page: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">