Help - Search - Members - Calendar
Full Version: Dynamic Html
Zymic Webmaster Forums > Web Design & Development > Client Side Scripting > HTML and CSS
Rajeev
hi

how to make html dynamic through html coding plz someone help for this
swordz
That's what PHP is for...

Swordz
IamShipon1988
Most DHTML content is backed by javascript. Try searching Dynamic Drive.
localinternettraffic
Java Scripts make HTML pages more dynamic.
The <script> tag is used to define a client-side script Like JavaScript.The script element either contains scripting statements.
Such as:
<script type="text/javascript">
document.write("Hello World!")
</script>
jaantje
DHTML ,DHTML is NOT a language, DHTML is a TERM describing the art of making dynamic and interactive web pages,DHTML combines HTML, JavaScript, the HTML DOM, and CSS.
web page using DHTML is set up the following way:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DHTML example</title>
<script type="text/javascript">
function init() {
myObj = document.getElementById("navigation");
// .... more code
}
window.onload=init;
</script>
</head>
<body>
<div id="navigation"></div>
<pre>
Often the code is stored in an external file; this is done by linking the file that contains the JavaScript.
This is helpful when several pages use the same script:
</pre>
<script type="text/javascript" src="myjavascript.js"></script>
</body>
</html>
vikramrandhawa
DHTML is a combination of a static markup language (such as HTML), a client-side scripting language (such as JavaScript), a presentation definition language (such as CSS), and the Document Object Model.
eswari
DHTML is a term describing the art of making dynamic and interactive web pages. This is the combination of HTML, JavaScript, the HTML DOM, and CSS.
topmakemoneyideas
I use a few of these and I am doing quite well thanks for the add information.It’s always a pleasure to see what you come up with next.
morgancartel
Nice
aman1
Dhtml means dynamic hyper text markup language.Dhtml making the dynamic and interactive web page.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2012 Invision Power Services, Inc.