Web Design Tutorials and Articles

By Chrysanthus - About Me - E-mail this page - Add to My Favorites - Add to Blog List - See other blogs in Computers & Internet

Sunday, May 17, 2009

Web Page Design for All Resolutions

Introduction You might have noticed that some web pages display well in one resolution and poorly in another resolution. For the same web page, in one resolution the distance between some HTML elements may be satisfactory; in another, the distance might be too long or too short. You might also have noticed that in one resolution, there is no horizontal scroll bar, but in another, there is a horizontal scroll bar. These are some of the problems with displaying a web page in different resolutions.... Sign in to see full entry.

Tuesday, May 12, 2009

XHTML Table Basics

XHTML Basics - Part 13 Introduction Any information that you have in a grid form should be put in a table. An example of such information is the marks of students during an examination. This is an illustration of the arrangement of such marks: History Math Geography John 75 60 70 Peter 50 55 80 Mary 54 62 73 In this example there are four rows and four columns. The first row has texts. The first column also has texts. A table can be made up of any number of rows and columns. Each item (word or... Sign in to see full entry.

Sunday, May 10, 2009

JSON File

Introduction A JSON file is a file at a web server having just a JavaScript object literal (see below). The content of this file is normally downloaded by Ajax to the client browser. At the client browser it is assigned to a JavaScript global variable, and so forming a JavaScript object by “literal notation”. JavaScript code residing at the client browser can then use the properties and methods in the downloaded JSON file. JavaScript object by Literal Notation Consider the following statement:... Sign in to see full entry.

Creating JavaScript Objects by Literal Notation

Introduction The aim of this article is to quickly make you understand the meaning of Program Objects (OOP) and how to create them in JavaScript. I assume in this article that you know the meaning of variables and functions in JavaScript, but you might not have understood JavaScript objects. There are three ways of creating JavaScript objects and in this article I show you the one that is indicated by the title (of this article). Let us start. Variables, Functions and Objects in JavaScript Let... Sign in to see full entry.

Wednesday, May 6, 2009

Creating JavaScript Objects by Constructor Function

Introduction The aim of this article is to quickly make you understand the meaning of Programming Objects (OOP) and how to create them in JavaScript. I assume in this article that you know the meaning of variables and functions in JavaScript, but you might not have understood JavaScript objects. There are three ways of creating JavaScript objects and in this article I show you the one that is indicated by the title (of this article). Let us start. Variables, Functions and Objects in JavaScript... Sign in to see full entry.

Headlines (What is this?)