| Back to Questions Page |
| |
| Question |
What is the diffrence between HTML & DHTML...? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | XHTML is HTML described as an application of XML. It is very
similar to HTML, indeed all the element names and their
semantics are identical, but it has some important
differences. We will look at the more important of these now.
Here are the major differences that concern us when we use
it as a markup language. There are others, but they will
probably not concern us. You should consult the XHTML spec
(www.w3.org) for a full list of differences.
* XML is case sensitive. All XHTML element and attribute
names must be in lowercase.
* All attribute values must be quoted, e.g.
cellpadding="10", NOT cellpadding=10.
* Empty elements such as the 'img' element must take a
special form, namely <img/>. Not the penultimate forward slash.
* All non-empty elements must have closing tags, e.g.
<p>...</p>, <li>...</li>. Implied closing tags are not allowed.
* Implied elements e.g. in HTML the <head>...</head> and
<body>...</body> tags can be implied. In XHTML they must be
written out in full.
* The XHTML document declarations are different for
XHTML documents. Use View/source on this document to see a
typical XHTML declaration. in particular not the xmlns
attribute on the <html> opening tag.  |
| Dipak Suryavanshi |
| |
| |
| Answer | html is used to write only static content
Dhtml is used to write dynamic content like using
javascript or vbscript in html to make html page dynamic
html is a error free language where dhtml is not a error
free language  |
| O. Sathish, Hyderabad |
| |
| |
| Answer | Dynamic HTML is a collective term for a combination of new
Hypertext Markup Language (HTML) tags and options, that will
let you create Web pages more animated and more responsive
to user interaction than previous versions of HTML. Much of
dynamic HTML is specified in HTML 4.0. Simple examples of
dynamic HTML pages would include (1) having the color of a
text heading change when a user passes a mouse over it or
(2) allowing a user to "drag and drop" an image to another
place on a Web page. Dynamic HTML can allow Web documents to
look and act like desktop applications or multimedia
productions.
The features that constitute dynamic HTML are included in
Netscape Communications' latest Web browser, Navigator 4.0
(part of Netscape's Communicator suite), and by Microsoft's
browser, Internet Explorer 4.0. While HTML 4.0 is supported
by both Netscape and Microsoft browsers, some additional
capabilities are supported by only one of the browsers. The
biggest obstacle to the use of dynamic HTML is that, since
many users are still using older browsers, a Web site must
create two versions of each site and serve the pages
appropriate to each user's browser version.  |
| Manoj Mishra |
| |
| |
|
|
| |
| Question |
EXPLINE THE HTML? |
Rank |
Answer Posted By |
|
Question Submitted By :: P.kannan |
| This Interview Question Asked @ CTS |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | HYPER TEXT MARKUP LANGUAGE.  |
| P.kannan |
| |
| |
| Answer | HYPER TEXT MARKUP LANGUAGE.
hypertext -special text used to linked other pages ,when we
click on this text we goes to linked broweser.
markup - there r so many options to better look like fonts
change,bold etc.
LANGUAGE - u know  |
| Amanrai |
| |
| |
| Question |
Differences Between XML and HTML |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ DELL , REACH, Differences Between XML And HTML, Guest In Which Company Interview U Faced This Qution , Pinkesh Pinkeshthedesiner@gmail.com |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | XML
HTML
User definable tags
Defined set of tags designed for web display
Content driven
Format driven
End tags required for well formed documents
End tags not required
Quotes required around attributes values
Quotes not required
Slash required in empty tags
Slash not required
 |
| Guest |
| |
| |
| Answer | XML and HTML are different and they both have different
goals. They are designed for different purposes. Some people
think that xml is an advanced version of html and it has
come to replace html. It is not the case. Both will be there
as they are used for different purposes.  |
| Anshul |
| |
| |
| Question |
What is XHTML? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Is simple words, XHTML, or Extensible HTML, is HTML 4 with
XML rules applied to it (each begin tag must have an end
tag, attribute values in single/double quotes, etc.).
However, the overall vision of XHTML is much more than
that. In addition to using XML syntax for HTML, XHTML also
encloses specifications such as […]  |
| Guest |
| |
| |
| Question |
How do I make a new paragraph? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Inserting thetag at the beginning of your paragraph will
drop the text down two lines. (If you insert the
tag, it will drop your text down one line.)
 |
| Guest |
| |
| |
| Answer | <p> </p>  |
| Jack |
| |
| |
| Answer | if we developing html in the Design mode simply push "Enter"
button on keyboard. It will generate a paragraph
If we developing in Code mode the move the text in between
"<p>" and "</p>" tags.  |
| Chiranjeevi |
| |
| |
| Question |
What is the difference between the CLASS and ID when you are
writting CSS? |
Rank |
Answer Posted By |
|
Question Submitted By :: Yathindra |
| This Interview Question Asked @ Virtusa , Mumtaz |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | In CSS we can call id with '#' and can be used only one time
for one page. When coming to the case of class in CSS it can
be used infinite number of times in the same page as well as
in the whole site.  |
| Yathindra |
| |
| |
| Answer | ID uniquely identifies an element within a document where
CLASS attribute specifies an element to be a member of one
or more classes. Unlike with the ID attribute, any number of
elements can share the same class. CLASS attribute can be
used to impose a certain pattern in the webpage, like the
page's header, footer,etc. which will enhance uniformity
among all webpage of a website.  |
| Suji |
| |
| |
| Question |
what's use of <br> command |
Rank |
Answer Posted By |
|
Question Submitted By :: Manas |
| This Interview Question Asked @ Enkay , Tt, Itsoft |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | <br> is for line breaking command  |
| Manas |
| |
| |
| Answer | hai friend <hr> tag is used to insrt a link break when
ever you required.
EG:if you ant paragraph like below:
line-1 1.I am rajendra and ihave 3 years of experience.
line-2 2.i am a verygood testing engineer.
Secondline should start in a fresh line after first line
then observe the below cone to generate in a html code.
---------------------------------------------------------
<html>
<body>1.I am rajendra and ihave 3 years of experience.<br>
2.i am a verygood testing engineer.
</body>
</html>
---------------------------------------------------------
if you want see this real functionality copy the above code
into notepad and save it on desktop as eg.html then the
eg html file will be on the desk top,click file with
mouse u can see the required o/p on browser.
again the same code copy into another notepad editor and
saveit as eg1.html,but you delete the <br> tag from the
code.now you compare the difference between two code,you
can find the difference.
ok byeeeeeeee  |
| Rajendra Prasad Reddy Penumall |
| |
| |
| Answer | <br> tag is used for line break.  |
| Manonmani.r |
| |
| |
| Question |
How can you have different number of cells for each row of
a table?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ Microsoft , Abc, Abc |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | By using the COLSPAN attribute of the <TD> tag.
Example:
<TABLE>
<TR>
<TD>Column 1</TD>
<TD>Comumn 2</TD>
</TR>
<TR>
<TD COLSPAN = "2">Column1 & Column 2</TD>
</TR>
</TABLE>  |
| Todd Vernon |
| |
| |
| Question |
What is the tag Code Base and why do we use it?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ Microsoft |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | After writing and compiling a Java applet, you can display
it in a web page by using the APPLET tag. The CODE attribute
specifies the name of the Java applet to run. The CODEBASE
attribute specifies the subdirectory or folder containing
the Java applet. You can use PARAM tags between the <APPLET>
and </APPLET> tags to provide information about parameters,
or arguments, to be used by the Java applet.
Syntax
<APPLET
CODE=”classFileName”
CODEBASE=”classFileDirectory”
ARCHIVE=”archiveFile”
ALT=”altText”
ALIGN=”LEFT”  |
| R |
| |
| |
| Question |
In DHTML what is the difference between FontSize and Font
Size ?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ Microsoft , Magna Infotech |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | FontSize is a property, Font Size is a style  |
| P |
| |
| |
| Answer | font-size is the style property...font size is the attribute
used in the font tag.....
that is:
in font tag
<font size="3">..but font tag is deprecated...
but in CSS
p{font-size:"3"}
please corrrect me if i am wrong  |
| Karuna |
| |
| |
| Answer | If you know proper answer only you should post your
answer.Because hundreds of people go through this.  |
| Html Gem |
| |
| |
| Question |
How do you create Drop Down Combos in HTML ? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ Microsoft |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | <select name="age">
<option>select </option>
<option>00 - 10</option>
<option>10 - 20</option>
<option>30 - 40</option>
<option>40 - 50</option>
</select>  |
| Bharathi |
| |
| |
|
| |
|
Back to Questions Page |