noscript tag

Posted in HTML | Posted on 01-06-2010-05-2008

Although the majority of web users have JavaScript enabled on their browsers, there is always that small percentage that have JavaScript disabled. This is where the noscript tag comes in to play.

Read the rest of this entry »

Introduction to JavaScript

Posted in JavaScript | Posted on 27-03-2010-05-2008

Okay, so you have learned the basics of HTML. But you have discovered HTML’s limitations. You want some interactivity and cool effects on your site.   Believe it or not, that interactivity and those effects can be achieved with JavaScript.

Read the rest of this entry »

PHP contact form to email account

Posted in PHP | Posted on 20-01-2010-05-2008

In this tutorial we will learn how to use a basic HTML form with a PHP script. We will be working on a simple contact form that can be used on your website.

Read the rest of this entry »

First PHP Script

Posted in PHP | Posted on 11-11-2009-05-2008

PHP is a server side scripting language.  PHP will allow you to accept input from HTML forms.  Actually, that’s just the tip of the iceberg.  You can do a lot of things with PHP.  A few possibilities are: creating a rotating banner, making calculations, adding and extracting data to a database.  Again, these are just a few really small examples of what you can do.

Read the rest of this entry »

First Perl Script

Posted in Perl | Posted on 25-09-2009-05-2008

In this tutorial, we will be introduced to a scripting language called Perl. Perl is a Server-Side scripting language; meaning that the script will run off of a server.

Read the rest of this entry »

Using FTP Software

Posted in Web Hosting | Posted on 18-08-2009-05-2008

So you have purchased your domain name from your favorite registrar and you are ready for your website to go live. You have setup an account with a host server (If you don’t have a host server yet, here is a list of web hosts recommended by WordPress). The only thing left is to upload your files to your server with FTP software.

Read the rest of this entry »

CSS Backgrounds

Posted in CSS | Posted on 02-08-2009-05-2008

In this tutorial we’ll go over some of the CSS features that can be used with background images.

Read the rest of this entry »

CSS Hyperlinks

Posted in CSS | Posted on 08-07-2009-05-2008

CSS technology gives us the creative power over how we want our links displayed.  We no longer have to settle for the generic blue underlined links of the past.  We can have a link with a yellow background that is green and bold.  The link can be a background image.  There are a lot of possibilities here.

Read the rest of this entry »

CSS Classes, IDs, and Inline Styles

Posted in CSS | Posted on 16-06-2009-05-2008

There are three ways that you can use CSS technology in your web page. The style class, the style id, and inline styles can all be used simultaneously on the same web page.

Read the rest of this entry »

Introduction to CSS (Cascading Style Sheets)

Posted in CSS | Posted on 18-05-2009-05-2008

In the past, webmasters had to declare the presentational attributes of each HTML element respectively.  For example if you had an <h1> tag and wanted its font size to be 15 pixels, you would have to specify the font size for the that particular <h1> tag.  That sounds easy, right.  Now imagine that you have 2000 <h1> tags throughout your site, and you have decided that you want to change the font size on all of them to 13 pixels.  This would more than likely be a nightmare to accomplish.  This is where CSS (Cascading Style Sheets) comes into play.

Read the rest of this entry »