Zymic Forums

Webmaster resources

Zymic IRC Server

Chat in real time at irc.zymic.com - Learn More

Welcome

Welcome to the Zymic webmaster forums. Our forums are here to provide people the free ability to discuss a range of websites related topics such as design, development coding and marketing.

In order to post you will need to register for a zymic account or if you already have one simply login by using the form on the left.

left Zymic Webmaster ForumsWeb Design & DevelopmentClient Side ScriptingHTML and CSS right
  Reply to this topic Start new topic
left right
Rajeev
post Oct 30 2009, 11:16 AM
Post #1


Newbie
*

Group: Members
Posts: 1
Joined: 30-October 09
From: delhi
Member No.: 116,159



hi

how to make html dynamic through html coding plz someone help for this
Go to the top of the page 
 
  + Quote Post
swordz
post Oct 30 2009, 11:59 AM
Post #2


Outrageously Uber Ninja
*******

Group: Moderators
Posts: 1,805
Joined: 10-July 08
From: UK
Member No.: 44,994



That's what PHP is for...

Swordz
Go to the top of the page 
 
  + Quote Post
IamShipon1988
post Dec 1 2009, 01:16 PM
Post #3


Outrageously Uber Ninja
*******

Group: Moderators
Posts: 1,562
Joined: 19-September 07
From: Rochester, NY
Member No.: 86



Most DHTML content is backed by javascript. Try searching Dynamic Drive.
Go to the top of the page 
 
  + Quote Post
localinternettra...
post Sep 28 2010, 10:48 AM
Post #4


Newbie
*

Group: Members
Posts: 6
Joined: 19-July 10
Member No.: 149,669



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>
Go to the top of the page 
 
  + Quote Post
jaantje
post Nov 2 2010, 05:27 AM
Post #5


Newbie
*

Group: Members
Posts: 5
Joined: 2-November 10
Member No.: 163,611



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>
Go to the top of the page 
 
  + Quote Post
vikramrandhawa
post Sep 20 2011, 04:52 AM
Post #6


Member
**

Group: Members
Posts: 92
Joined: 3-September 11
Member No.: 206,994



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.
Go to the top of the page 
 
  + Quote Post
eswari
post Sep 29 2011, 07:51 AM
Post #7


Member
**

Group: Members
Posts: 45
Joined: 9-June 11
Member No.: 193,512



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.
Go to the top of the page 
 
  + Quote Post
topmakemoneyidea...
post Sep 29 2011, 08:32 AM
Post #8


Newbie
*

Group: Members
Posts: 6
Joined: 29-September 11
Member No.: 211,130



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.
Go to the top of the page 
 
  + Quote Post
morgancartel
post Oct 10 2011, 02:00 PM
Post #9


Newbie
*

Group: Members
Posts: 2
Joined: 10-October 11
Member No.: 212,836



Nice
Go to the top of the page 
 
  + Quote Post
aman1
post Nov 1 2011, 09:21 AM
Post #10


Newbie
*

Group: Members
Posts: 3
Joined: 31-October 11
Member No.: 215,769



Dhtml means dynamic hyper text markup language.Dhtml making the dynamic and interactive web page.
Go to the top of the page 
 
  + Quote Post
maxsamuel
post Jun 13 2012, 08:18 AM
Post #11


Newbie
*

Group: Members
Posts: 9
Joined: 1-June 12
Member No.: 244,113



Dynamic HTML is not really a new specification of HTML, but rather a new way of looking at and controlling the standard HTML codes and commands.

When thinking of dynamic HTML, you need to remember the qualities of standard HTML, especially that once a page is loaded from the server, it will not change until another request comes to the server. Dynamic HTML give you more control over the HTML elements and allows them to change at any time, without returning to the Web server.
Go to the top of the page 
 
  + Quote Post
softprerna
post Aug 1 2012, 11:21 AM
Post #12


Member
**

Group: Members
Posts: 62
Joined: 31-July 12
Member No.: 250,988



Hellooo... rolleyes.gif
Dhtml stands for dynamic html and DHTML allows scripting languages to change variables in a web page's.
Go to the top of the page 
 
  + Quote Post
softprerna
post Aug 10 2012, 11:54 AM
Post #13


Member
**

Group: Members
Posts: 62
Joined: 31-July 12
Member No.: 250,988



java script makes the html pages more dynamic...
Go to the top of the page 
 
  + Quote Post
suganyabenton
post Jan 2 2013, 10:49 AM
Post #14


Newbie
*

Group: Members
Posts: 8
Joined: 2-January 13
Member No.: 268,506



HTML is defined as the Hyper Text Markup Language,HTML is used to Create the Web Sites ,where the Dynamic HTML is defined as the same as the HTML but where the tags that are used to create the Web Sites can be Changed any time thus this is called as the Dynamic HTML,Dynamic means Change.
Go to the top of the page 
 
  + Quote Post
Adira
post Jan 28 2013, 09:24 AM
Post #15


Newbie
*

Group: Members
Posts: 4
Joined: 28-January 13
From: Wilmington DE
Member No.: 271,502



Ye, Dynamic HTML (DHTML) uses JavaScript, CSS, and HTML 4.0 (or XHTML) to build/create pages that change and react to the readers actions. Learn to use DHTML and make your Web pages more exciting.
Go to the top of the page 
 
  + Quote Post
testingwhiz
post Apr 10 2013, 04:51 PM
Post #16


Newbie
*

Group: Members
Posts: 11
Joined: 14-March 13
Member No.: 276,571



PHP or JavaScript can be used for creating dynamic html pages as it provides good security which is the main concern in dynamic website.
Go to the top of the page 
 
  + Quote Post
 Reply to this topic Start new topic
left right
0 Members:
left right
 


Lo-Fi Version Time is now: 18th May 2013 - 03:38 PM