|
Technical Interview Questions
Javascript Interview Questions
Ajax
Interview Questions
CSS Interview Questions
XML
Interview Questions
VB
Interview Questions
.........More
Programming Source Codes
Java Source Codes
Html Source Codes
CSS Source Codes
C Source Codes
.........More
Soft Skills
Communication Skills
Leadership Skills
.........More
|
|
XHTML Interview Questions and Answers
What's XHTML Validation?
An XHTML document is validated against a Document Type
Definition.
Validate XHTML With A DTD
An XHTML document is validated against a Document Type
Definition (DTD). Before an XHTML file can be properly
validated, a correct DTD must be added as the first line
of the file.
The Strict DTD includes elements and attributes that
have not been deprecated or do not appear in framesets:
!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
The Transitional DTD includes everything in the strict
DTD plus deprecated elements and attributes:
!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
The Frameset DTD includes everything in the transitional
DTD plus frames as well:
!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"
This is a simple XHTML document:
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>simple document</title>
</head>
<body>
<p>a simple paragraph</p>
</body>
</html>
Ampersands in hrefs must convert "&" to "&" in the
URI
<a href="http://www.phonelists.com/cgi-bin/Handler.pl?ListID=Test&Password=test&action=View">Sample
List</a>
becomes
<a href="http://www.phonelists.com/cgi-bin/Handler.pl?ListID=Test&Password=test&action=View">Sample
List</a>
# The attribute "name" becomes "id" when used for a
locator inside a document
For example, to reference a section within a document
with a URI, we usually do something like
"<a href="favoriteAnimals.html#meerkats">Meerkats</a>"
Inside the referenced section,
<a name="meerkats"><h2>Meerkats of Africa</h2></a>
becomes
<a id="meerkats"><h2>Meerkats of Africa</h2></a>
or better yet for backwards compatibility:
<a id="meerkats" name="meerkats"><h2>Meerkats of
Africa</h2></a>
# Tidy
tidy is a tool to automatically convert HTML to XHTML.
You can find it at http://www.w3.org/People/Raggett/tidy/.
What's about an assumption with XHTML?
Serving XHTML with a MIME type of text/html is wrong.
The whole point of XHTML is that it’s XML so that you
can benefit from namespaces and the like. If you serve
it as text/html, you can’t:
In particular, ‘text/html’ is NOT suitable for XHTML
Family document types that adds elements and attributes
from foreign namespaces, such as XHTML+MathML [XHTML+MathML].
Source: http://www.w3.org/TR/xhtml-media-types/#text-html
Two choices:
1. XHTML 1.0 served as application/xhtml+xml to
conforming UAs, and text/html to Internet Explorer
2. HTML 4.01, served as text/html
XHTML 1.1 is not an option because it mandates a MIME
type of application/xhtml+xml which is incompatible with
Internet Explorer
How to writing XHTML demands a clean HTML syntax?
Some More XHTML Syntax Rules:
* Attribute names must be in lower case
* Attribute values must be quoted
* Attribute minimization is forbidden
* The id attribute replaces the name attribute
* The XHTML DTD defines mandatory elements
1. Attribute Names Must Be In Lower Case:
This is wrong:
<table WIDTH="100%">
This is correct:
<table width="100%">
2. Attribute Values Must Be Quoted:
This is wrong:
<table width=100%>
This is correct:
<table width="100%">
3. Attribute Minimization Is Forbidden:
This is wrong:
<input checked>
<input readonly>
<input disabled>
<option selected>
<frame noresize>
This is correct:
<input checked="checked" />
<input readonly="readonly" />
<input disabled="disabled" />
<option selected="selected" />
<frame noresize="noresize" />
Here is a list of the minimized attributes in HTML and
how they should be written in XHTML:
HTML XHTML
compact compact="compact"
checked checked="checked"
declare declare="declare"
readonly readonly="readonly"
disabled disabled="disabled"
selected selected="selected"
defer defer="defer"
ismap ismap="ismap"
nohref nohref="nohref"
noshade noshade="noshade"
nowrap nowrap="nowrap"
multiple multiple="multiple"
noresize noresize="noresize"
4. The id Attribute Replaces The name Attribute: HTML
4.01 defines a name attribute for the elements a,
applet, frame, iframe, img, and map. In XHTML the name
attribute is deprecated. Use id instead.
This is wrong:
<img src="picture.gif" name="picture1" />
This is correct:
<img src="picture.gif" id="picture1" />
Note: To interoperate with older browsers for a while,
you should use both name and id, with identical
attribute values, like this:
<img src="picture.gif" id="picture1" name="picture1" />
IMPORTANT Compatibility Note:
To make your XHTML compatible with today's browsers, you
should add an extra space before the "/" symbol. The
Lang Attribute
The lang attribute applies to almost every XHTML
element. It specifies the language of the content within
an element.
If you use the lang attribute in an element, you must
add the xml:lang attribute, like this:
<div lang="no" xml:lang="no">Heia Norge!</div>
Mandatory XHTML Elements
All XHTML documents must have a DOCTYPE declaration. The
html, head and body elements must be present, and the
title must be present inside the head element.
This is a minimum XHTML document template:
<!DOCTYPE Doctype goes here>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Title goes here</title>
</head>
<body>
Body text goes here
</body>
</html>
Note: The DOCTYPE declaration is not a part of the XHTML
document itself. It is not an XHTML element, and it
should not have a closing tag.
Note: The xmlns attribute inside the <html> tag is
required in XHTML. However, the validator on w3.org does
not complain when this attribute is missing in an XHTML
document. This is because "xmlns=http://www.w3.org/1999/xhtml"
is a fixed value and will be added to the <html> tag
even if you do not include it.
Page Numbers
: 1
2
3
4
5
Have a Question ?
post your questions here. It
will be answered as soon as possible.
Check
HTML Interview
Questions for more HTML Interview Questions with Answers
Check
Job Interview Questions
for more Interview Questions with Answers
|