Shine Tutorial    
  shinetutorialtopsideimage
HOME DOS OS C,C++ HTML CSS XML JAVA ASP PHP SQL OFFICE MULTIMEDIA MORE... CERTIFICATION ABOUT
 
S T ADVT
TUTORIALS
 

DHTML Summary - What's Next?

« Previous Next Chapter »

DHTML is about combining HTML, JavaScript, DOM, and CSS.


DHTML is a Term

In this tutorial you have learned that DHTML is only a term used to describe combinations of HTML, JavaScript, DOM, and CSS to create more dynamic web pages.

More DHTML examples


JavaScript

JavaScript is the standard scripting language for the Internet.

Every web developer should learn JavaScript.

Visit our JavaScript tutorial, and our complete JavaScript reference.


The HTML DOM

HTML 4 supports the HTML Document Object Model (DOM).

The HTML DOM is the standard way to access HTML elements. It works in all browsers.

With the HTML DOM, you can make interactive web pages that will work in all modern browsers.

If you are serious about web development, study our HTML DOM tutorial, and our complete HTML DOM reference.


Dynamic CSS

There is no such thing as dynamic CSS.

However, with JavaScript and the HTML DOM you can dynamically change the style of any HTML element.


Server-side Scripting

In this tutorial we have created dynamic web pages by using scripts on the client (in the browser).

Web pages can also be made more dynamic by using scripts on the server.

With server-side scripting you can edit, add, or change any web page content. You can respond to data submitted from HTML forms, access data or databases and return the results to a browser, and customize pages for individual users.

At W3Schools you can study the following server-side scripting tutorials:

PHP tutorial

ASP tutorial

.NET tutorial


« Previous Next Chapter »