What is the Difference between HTML and DHTML
Answers were Sorted based on User's Feedback
Answer / mahi
HTML - (Hypertext Markup Language) is the set of markup
symbols or codes inserted in a file intended for display on
a World Wide Web browser page. The markup tells the Web
browser how to display a Web page's words and images for the
user.
DHTML - Dynamic HTML is a collective term for a combination
of Hypertext Markup Language (HTML) tags and options that
can make Web pages more animated and interactive than
previous versions of HTML
| Is This Answer Correct ? | 159 Yes | 13 No |
Answer / sarath chandra
HTML: it is the static part of the document and it is just
used to display the contents statically is called as the
html
DHTML: It is the dynamic part of the html where the mater
is dynamically displayed so it is called as the dhtml
html & dhtml are both the markup languages both are used to
develop a web pages
| Is This Answer Correct ? | 98 Yes | 21 No |
Answer / chaitanya
HTML-Hypertext Markup language.which displays the static
content of data.
DTHL-Dynamic Hypertext Markup Langauge which is the
combination of css,javascript and html.we can do form
validations.
| Is This Answer Correct ? | 25 Yes | 7 No |
Answer / reddy
HTML - (Hypertext Markup Language) is the set of markup
symbols or codes inserted in a file intended for display on
a World Wide Web browser page. The markup tells the Web
browser how to display a Web page's words and images for the
user.
DHTML - Dynamic HTML is a collective term for a combination
of Hypertext Markup Language (HTML) tags and options that
can make Web pages more animated and interactive than
previous versions of HTML
| Is This Answer Correct ? | 23 Yes | 12 No |
Answer / jitender
HTML is simpal Static Language but when use CSS and Java
Script in HTML that is called DHTML.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / karan mehta
In Dhtml response to question given at that time.for example
chatting.
In Html response to question is not given at that time.for
example emails.
| Is This Answer Correct ? | 12 Yes | 7 No |
Answer / vivek rastogi
HTML - (Hypertext Markup Language) is the set of markup
symbols or codes inserted in a file intended for display on
a World Wide Web browser page. The markup tells the Web
browser how to display a Web page's words and images for the
user.
DHTML - Dynamic HTML is a collective term for a combination
of Hypertext Markup Language (HTML) tags and options that
can make Web pages more animated and interactive than
previous versions of HTML - VIVEK RASTOGI, LUCKNOW
| Is This Answer Correct ? | 9 Yes | 6 No |
Answer / abhinandan mishra
DHTML:- sites are dynamic in nature. DHTML uses client side
scripting to change variables in the presentation which
affects the look and function of an otherwise static page.
DHTML characteristics are the functions while a page is
viewed, rather than generating a unique page with each page
load (a dynamic website).
On the other hand, HTML is static. HTML sites relies solely
upon client-side technologies. This means the pages of the
site do not require any special processing from the server
side before they go to the browser.
| Is This Answer Correct ? | 11 Yes | 8 No |
Answer / kamalpreet
html is static in nature
dhtml is dynamic in nature.
html can't change data
dhtml can changed data.
| Is This Answer Correct ? | 7 Yes | 4 No |
What is the use of anonymous function in javascript?
Explain mul function in javascript?
Where do I put javascript code in html?
Which is better typescript or javascript?
What is the naming conventions for the variables in javascript?
Why are callbacks used?
What will be the output of the code below? var Y = 1; if (function F(){}) { y += Typeof F;</span> } console.log(y);
Is a parabola a function?
Does html5 replace javascript?
What is stack in javascript?
hi i want validations for two drop down lists. when user enter to second list by skipping first list alert box should appear. <HTML><HEAD> <TITLE>drop down validation</TITLE> <script type="text/javascript"> function validateForm(){ if(document.ItemList.Item.selectedIndex==0) { alert("Please select item from first list."); document.ItemList.Item.focus(); return false; } return true; } </SCRIPT> </HEAD> <BODY> Please choose an item from the drop down menu: <form name="ItemList" method="post" action="asp.html" onsubmit="validateForm()"> <table width="100%" border="0"> <tr> <td width="135">Choose a username: </td> <td> <select name="Item"> <option value selected> SELECT </option> <option value>Apples</option> <option value>Oranges</option> </select> <table width="100%" border="0"> <tr> <td width="135">Choose a username: </td> <td> <select name="Item" onclick="validateForm()"> <option value selected> SELECT </option> <option value>Apples</option> <option value>Oranges</option> </select> <input type="submit" name="Submit" value="Submit"> </td></tr></table></form> </BODY> </HTML> please any body help me thanks
What is the difference between synchronous and asynchronous JavaScrip