Archive for the 'Advanced Html' Category

Page Structuring Using Cascading Style Sheets in Adobe Dreamweaver CS3

Saturday, February 23rd, 2008

By Zak Ruvalcaba
Nov 2, 2007
Sample Chapter is provided courtesy of Sams
AP Elements offer a clean, standards-compliant alternative to developing websites. Using CSS in conjunction with <div> tags affords you the capability to cleanly separate positioning and formatting properties from structural code. Learn how in this sample chapter.
In This Chapter
Introduction to AP Elements
Working with AP Elements
Designing […]

HTML Tags Quick Reference

Saturday, December 15th, 2007

HTML Quick Reference V 1.2 (Including HTML 3.2, IE, and Netscape Extensions.)

Basic Structure:

<!- ….. ->
Specifies a comment. Anything between these tags will be skipped by the browser.
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 3.2 //EN”>
This is the necessary first element of any HTML 3.2 compliant document.
<HTML>…..< /HTML>
Encloses the entire document.
<HEAD>…..< /HEAD>
Encloses the head of the document. […]

Cascading Stylesheets Advantages

Saturday, December 15th, 2007

1. The content is separated from the design Because you are able to create a separate Stylesheet and link it to all your webdocuments, you have great control over how your website looks. So if you want to change a certain aspect of your page, you only need to alter one file: your Stylesheet!
This […]

Successful CSS Template Skins

Saturday, December 15th, 2007

The CSS mantra is the separation of content and style. The content should be in the HTML and the CSS should take care of how the HTML is displayed on the page. However, most web-designs don’t properly separate content and style. The HTML and CSS are there separately, but if you changed the HTML, the […]

Creating Tableless Sites - Why and Some Basics

Saturday, December 15th, 2007

In a time of web developers who just like to say that ‘Tables are Evil’ and can’t (or won’t) explain why, this article will attempt to give you some solid reasons that people create tableless designs. Included are six major benefits of creating tableless sites, and how to sell your desire to alter your website […]