New HTML DHTML Interview Questions :: ALLInterview.com http://www.allinterview.com New HTML DHTML Interview Questions en-us Login form located at the home page acepting the name of the custome http://www.allinterview.com/showanswers/75563.html What is pull down menu box,how giving links using vbscript http://www.allinterview.com/showanswers/75562.html give zigzag motion to the image for webdesigning http://www.allinterview.com/showanswers/75561.html What is the diffrence between HTML &amp; DHTML...? http://www.allinterview.com/showanswers/70315.html 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 m EXPLINE THE HTML? http://www.allinterview.com/showanswers/69857.html HYPER TEXT MARKUP LANGUAGE. How to create scrollable tables in HTML-DHTML? My doubt is &quot;I w http://www.allinterview.com/showanswers/68696.html Differences Between XML and HTML http://www.allinterview.com/showanswers/65085.html 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 requ What is XHTML? http://www.allinterview.com/showanswers/65084.html 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 How do I make a new paragraph? http://www.allinterview.com/showanswers/65083.html 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.) What is the difference between the CLASS and ID when you are writting http://www.allinterview.com/showanswers/37349.html 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. what&#039;s use of &lt;br&gt; command http://www.allinterview.com/showanswers/23030.html <br> is for line breaking command How can you have different number of cells for each row of a table? http://www.allinterview.com/showanswers/18192.html 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&l What is the tag Code Base and why do we use it? http://www.allinterview.com/showanswers/18191.html 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 In DHTML what is the difference between FontSize and Font Size ? http://www.allinterview.com/showanswers/18190.html FontSize is a property, Font Size is a style How do you create Drop Down Combos in HTML ? http://www.allinterview.com/showanswers/18189.html <select name="age"> <option>select </option> <option>00 - 10</option> <option>10 - 20</option> <option>30 - 40</option> <option>40 - 50</option> </select>