Search Tutorials:

Tuesday, October 28, 2008

Dreamweaver CS3: Document Window

Dreamweaver CS3: Document Window


Social Bookmarking

Dreamweaver CS3: Insert Bar

Dreamweaver CS3: Insert Bar


Social Bookmarking

Dreamweaver CS3: Welcome Screen

Dreamweaver CS3: Welcome Screen


Social Bookmarking

Dreamweaver CS3: Workspace

Dreamweaver CS3: Workspace


Workspace Overview
The Dreamweaver CS3 interface is designed to let you create web pages without having to frequently use the menu bar to access commands.

The Insert bar contains various objects that can be inserted into a document. Each object is a HTML code with various attributes that can be applied. For example, clicking on the Image button in the Insert bar will let you insert an image and apply different image settings into the document.

The Document toolbar contains buttons that let you view the document in different views and buttons
that contains common operations such as previewing the page in an Internet browser.

The Document window displays the contents of the document. It can be switched between three views: code, split, and design view using the buttons in the Document toolbar.

The Panel groups are sets of panels grouped together that can be expanded or collapsed.

The Files panel lets you browse and manage your file and folders on your computer or on a remote server.

The Property inspector lets you view and edit the properties for the select object or text. For example, when you click on an image in the Document window, the settings for the image will appear in the Property inspector to let you view or change the settings.

The tag selector shows the HTML tag the selected item is enclosed in and lets you select the contents of the tag by clicking on the tag in the tag selector.

Source: http://freeonlineclasses.net/index.php?&option=com_content&view=article&id=13:the-dreamweaver-cs3-workspace&catid=10:basics&Itemid=10

Social Bookmarking

Sunday, October 26, 2008

Dreamweaver CS3: Naming Index

Dreamweaver CS3: Naming Index


Social Bookmarking

Dreamweaver CS3: Naming Convention

Dreamweaver CS3: Naming Convention


Social Bookmarking

Dreamweaver CS3: Working with JavaScript

Dreamweaver CS3: Working with JavaScript


JavaScript is used in millions of Web pages to improve the design, validate forms, detect browsers, create cookies, and much more.

JavaScript is the most popular scripting language on the internet, and works in all major browsers, such as Internet Explorer, Firefox, and Opera.

What is JavaScript?
- JavaScript was designed to add interactivity to HTML pages
- JavaScript is a scripting language
- A scripting language is a lightweight programming language
- JavaScript is usually embedded directly into HTML pages
- JavaScript is an interpreted language (means that scripts execute without preliminary compilation)
- Everyone can use JavaScript without purchasing a license

Are Java and JavaScript the Same?
NO!
Java and JavaScript are two completely different languages in both concept and design!
Java (developed by Sun Microsystems) is a powerful and much more complex programming language - in the same category as C and C++.

What can a JavaScript Do?
- JavaScript gives HTML designers a programming tool - HTML authors are normally not programmers, but JavaScript is a scripting language with a very simple syntax! Almost anyone can put small "snippets" of code into their HTML pages

- JavaScript can put dynamic text into an HTML page - A JavaScript statement like this: document.write("

" + name + "

") can write a variable text into an HTML page

- JavaScript can react to events - A JavaScript can be set to execute when something happens, like when a page has finished loading or when a user clicks on an HTML element

- JavaScript can read and write HTML elements - A JavaScript can read and change the content of an HTML element

- JavaScript can be used to validate data - A JavaScript can be used to validate form data before it is submitted to a server. This saves the server from extra processing

- JavaScript can be used to detect the visitor's browser - A JavaScript can be used to detect the visitor's browser, and - depending on the browser - load another page specifically designed for that browser

- JavaScript can be used to create cookies - A JavaScript can be used to store and retrieve information on the visitor's computer

Source: http://www.w3schools.com/js/js_intro.asp

Social Bookmarking

Dreamweaver CS3: Working with DHTML

Dreamweaver CS3: Working with DHTML


DHTML is Not a Language
DHTML stands for Dynamic HTML.
DHTML is NOT a language or a web standard.
DHTML is a TERM used to describe the technologies used to make web pages dynamic and interactive.
To most people DHTML means the combination of HTML, JavaScript, DOM, and CSS.

DHTML Technologies
Below is a listing of DHTML technologies:

HTML 4
The W3C HTML 4 standard has rich support for dynamic content:
- HTML supports JavaScript
- HTML supports the Document Object Model (DOM)
- HTML supports HTML Events
- HTML supports Cascading Style Sheets (CSS)

DHTML is about using these features to create dynamic and interactive web pages.

JavaScript
JavaScript is the scripting standard for HTML.
DHTML is about using JavaScript to control, access and manipulate HTML elements.
You can read more about this in the next chapter of this tutorial.

HTML DOM
The HTML DOM is the W3C standard Document Object Model for HTML.
The HTML DOM defines a standard set of objects for HTML, and a standard way to access and manipulate them.
DHTML is about using the DOM to access and manipulate HTML elements.
You can read more about this in a later chapter of this tutorial.

HTML Events
The W3C HTML Event Model is a part of the HTML DOM.
It defines a standard way to handle HTML events.
DHTML is about creating web pages that reacts to (user)events.
You can read more about this in a later chapter of this tutorial.

CSS
CSS is the W3C standard style and layout model for HTML.
CSS allows web developers to control the style and layout of web pages.
HTML 4 allows dynamic changes to CSS.
DHTML is about using JavaScript and DOM to change the style and positioning of HTML elements.
You can read more about this in a later chapter of this tutorial.

Source: http://www.w3schools.com/dhtml/dhtml_intro.asp

Social Bookmarking

Dreamweaver CS3: Working with XHTML

Dreamweaver CS3: Working with XHTML


What Is XHTML?
- XHTML stands for EXtensible HyperText Markup Language
- XHTML is almost identical to HTML 4.01
- XHTML is a stricter and cleaner version of HTML
- XHTML is HTML defined as an XML application
- XHTML is a W3C Recommendation
- XHTML is a combination of HTML and XML (EXtensible Markup Language).
- XHTML consists of all the elements in HTML 4.01 combined with the syntax of XML.

Why XHTML?
We have reached a point where many pages on the WWW contain "bad" HTML.
The following HTML code will work fine if you view it in a browser, even if it does not follow the HTML rules:

<html><head>
<title>This is bad HTML</title>
<body>Bad HTML
</h1>>
</head></head>>


XML is a markup language where everything has to be marked up correctly, which results in "well-formed" documents.

XML was designed to describe data and HTML was designed to display data.

Today's market consists of different browser technologies, some browsers run Internet on computers, and some browsers run Internet on mobile phones or other small devices. The last-mentioned do not have the resources or power to interpret a "bad" markup language.

Therefore - by combining HTML and XML, and their strengths, we got a markup language that is useful now and in the future - XHTML.

Source: http://www.w3schools.com/xhtml/xhtml_intro.asp

Social Bookmarking

Dreamweaver CS3 Introduction

Dreamweaver CS3 Essential Training with Garrick Chow


Whether you are a novice web designer or an experienced developer, Dreamweaver is a comprehensive tool you can use for site design, layout, and management. In this lesson, you’ll take a tour of Dreamweaver’s key features and get a better understanding of how web pages work.

What is Dreamweaver?
Dreamweaver is an excellent coding and development tool for new and experienced users alike, and has quickly become the preferred web site creation and management program, providing a creative environment for designers. Whether you design web sites, develop mobile phone content, or script complex server-side applications, Dreamweaver has something to offer.

Design and layout tools
Dreamweaver’s many icon-driven menus and detailed panels make it easy to insert and format text, images, and media (such as video files and Flash movies). This means that you can create great-looking and functional web pages without knowing a single line of code—Dreamweaver takes care of building the code behind the scenes for you. Dreamweaver does not create graphics from scratch; instead, it is fully integrated with Adobe Photoshop CS3, so you can import and adjust graphics from within the application.

Site management and File Transfer Protocol (FTP)
Dreamweaver has everything you need for complete site management, including built-in file transfer (FTP) capabilities between a server and your local machine, reusable objects (such as page templates and library items), and several safety mechanisms (such as link checkers and site reports) so you can ensure that your site works well and looks good. If you’re designing your pages with Cascading Style Sheets (CSS), the new Browser Compatibility Check and CSS Advisor features will help you to locate and troubleshoot any potential display issues that may occur across different web browsers.

Coding environment and text editor
Dreamweaver lets you work in a code-only view of your document, which acts as a powerful text editor. Edit HTML code directly and switch views to see the results of your code as you work. Enhancements such as color coding, indentation, and visual aids make Dreamweaver a perfect text editing or coding environment for web designers of any level.

For more experienced developers, Dreamweaver also supports popular coding and scripting languages, such as JavaScript, and several server-side languages, including ColdFusion, PHP, and ASP.NET. Specialized insert menus and code panels help you to build pages and applications in the language of your choice.

Who uses Dreamweaver?
Dreamweaver’s popularity is a result of its diversity. Its ability to take a site from conception through launch-and maintenance afterward-makes it a preferred tool among industry professionals, businesses, and educational institutions. However, it remains easy and accessible enough for novice designers to get up and running quickly. It’s not unusual to see Dreamweaver utilized for personal projects or by small businesses and media professionals, such as photographers and painters, to maintain a web presence.

What’s new in Dreamweaver CS3?
CS3 introduces many innovative design and coding features as well as improvements to Dreamweaver’s flagship features. Now that Dreamweaver is part of the industry-standard Adobe Creative Suite, it has been engineered to work as seamlessly as possible with files from other CS3 applications, offering native support for Photoshop files and the ability to edit placed images directly in Adobe Photoshop CS3.

Source: http://www.learndreamweavertutorials.com/

Social Bookmarking

Sunday, October 5, 2008

CSS for Design Details

CSS Web Designers Intro: Chapter 11


CSS Making Panels


CSS List Grid


CSS Definition Grid


Social Bookmarking

CSS Positioning Properties

CSS Web Designers Intro: Chapter 10


CSS Normal Flow


CSS Relative Positioning


CSS Absolute Positioning


CSS Positioning Content


CSS Fixed Positioning


The CSS positioning properties allow you to specify the left, right, top, and bottom position of an element. It also allows you to set the shape of an element, place an element behind another, and to specify what should happen when an element's content is too big to fit in a specified area.

Browser support: IE: Internet Explorer, F: Firefox, N: Netscape.

W3C: The number in the "W3C" column indicates in which CSS recommendation the property is defined (CSS1 or CSS2).

bottom
Sets how far the bottom edge of an element is above/below the bottom edge of the parent element.

clip
Sets the shape of an element. The element is clipped into this shape, and displayed.

left
Sets how far the left edge of an element is to the right/left of the left edge of the parent element.

overflow
Sets what happens if the content of an element overflow its area.

position
Places an element in a static, relative, absolute or fixed position.

right
Sets how far the right edge of an element is to the left/right of the right edge of the parent element.

top
Sets how far the top edge of an element is above/below the top edge of the parent element.

vertical-align
Sets the vertical alignment of an element.

z-index
Sets the stack order of an element.

Source: http://www.w3schools.com/Css/css_positioning.asp

Social Bookmarking


Social Bookmarking

Blog Disclaimer

One Stop Web Dev't Buckets is a personal blog that aims to share online video tutorials. This blog is a collaborative effort of individuals who are currently registered members of other online community sites. One Stop Web Dev't Buckets does not claim any form of ownership or copyright in the materials found in this blog. Most of the video tutorials and contents featured in this blog come from other sites. The said materials are owned by those sites where these resources are posted.

Blog Affiliates

Web Development & Design - Top Blogs Philippines