<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>welcome to you my blog</title>
	<atom:link href="http://onlinemal.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://onlinemal.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 03 Mar 2008 07:54:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='onlinemal.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>welcome to you my blog</title>
		<link>http://onlinemal.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://onlinemal.wordpress.com/osd.xml" title="welcome to you my blog" />
	<atom:link rel='hub' href='http://onlinemal.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Macromedia Dreamweaver</title>
		<link>http://onlinemal.wordpress.com/2008/03/03/macromedia-dreamweaver/</link>
		<comments>http://onlinemal.wordpress.com/2008/03/03/macromedia-dreamweaver/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 07:54:56 +0000</pubDate>
		<dc:creator>tenpa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://onlinemal.wordpress.com/2008/03/03/macromedia-dreamweaver/</guid>
		<description><![CDATA[Introduction This guide is designed to introduce you to using Macromedia Dreamweaver MX if you’re unfamiliar with any major aspect of it. The lessons in this guide lead you through the process of creating a simple but functional website. Macromedia Dreamweaver MX is a professional HTML editor for designing, coding, and developing websites, web pages, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onlinemal.wordpress.com&amp;blog=3044106&amp;post=4&amp;subd=onlinemal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Introduction<a name="about"></a><br />
</b>This guide is designed to introduce you to using Macromedia Dreamweaver    MX if you’re unfamiliar with any major aspect of it. The lessons in this    guide lead you through the process of creating a simple but functional website.    </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Macromedia    Dreamweaver MX is a professional HTML editor for designing, coding, and developing    websites, web pages, and web applications. Whether you enjoy the control of    hand-coding HTML or prefer to work in a visual editing environment, Dreamweaver    provides you with helpful tools to enhance your web creation experience. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    visual editing features in Dreamweaver let you quickly create pages without    writing a line of code. If you prefer to code by hand, however, Dreamweaver    also includes many coding-related tools and features. And Dreamweaver helps    you to build dynamic database-backed web applications using server languages    such as ASP, ASP.NET, ColdFusion Markup Language (CFML), JSP, and PHP. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="webapplication"></a>What    is a web application? </b><br />
A web application is a website that contains pages stored on a web server with    partly or entirely undetermined content. The final content of a page is determined    only when the user requests a page from the web server. Because the final content    of the page varies from request to request based on the user’s actions,    this kind of page is called a dynamic page. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>How    a web application works </b><br />
A web application is a collection of regular and dynamic web pages. A regular    web page is one that does not change when a user requests it: the web server    sends the page to the requesting web browser without modifying it. In contrast,    a dynamic web page is modified by the server before it is sent to the requesting    browser. The changing nature of the page is why it’s called dynamic. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">For    example, you could design a page to display fitness results and leave certain    information (such as employee name and results) to be determined when the page    is requested by an employee. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="processingregularwebpages"></a>Processing    regular web pages </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
A regular website comprises a set of related HTML pages and files hosted on    a computer running a web server. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A    web server is software that serves web pages in response to requests from web    browsers. A page request is generated when a user clicks a link on a web page,    chooses a bookmark in a browser, or enters a URL in a browser’s Address    text box and clicks Go. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    final content of a regular web page is determined by the page designer and doesn’t    change when the page is requested. Here’s an example: </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Call Department&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;strong&gt;Call Department&lt;/strong&gt;&lt;br&gt;<br />
Talk to someone in Sales.<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
Every line of the page’s HTML code is written by the designer before the    page is placed on the server. Because the HTML doesn’t change once it’s    on the server, this kind of page is called a static page. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Note:    Strictly speaking, a “static” page may not be static at all. For    example, a rollover image or a Flash movie can make a static page come alive.    However, this help system refers to a page as static if it is sent to the browser    without modifications.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When    the web server receives a request for a static page, the server reads the request,    finds the page, and sends it to the requesting browser, as shown in the following    figure: </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/webfigure.gif" height="368" width="624" /></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In    the case of web applications, certain lines of code are undetermined when the    user requests the page. These lines must be determined by some mechanism before    the page can be sent to the browser. The mechanism is discussed in the following    section. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="processingdynamicpages"></a>Processing    dynamic pages </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When    a web server receives a request for a regular web page, the server sends the    page to the requesting browser without further ado. The web server reacts differently    when it receives a request for a dynamic page: it passes the page to a special    software extension responsible for finishing the page. This special software    is called an application server. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    application server reads the code on the page, finishes the page according to    the instructions in the code, then removes the code from the page. The result    is a static page that the application server passes back to the web server,    which then sends the page to the requesting browser. All the browser gets when    the page arrives is pure HTML. Here’s a view of the process: </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/dynamicpage.gif" height="429" width="625" />    </font></div>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Accessing    a database<br />
</b>An application server lets you work with server-side resources such    as databases. For example, a dynamic page may instruct the application server    to extract data from a database and insert it into the page’s HTML. For    more information.<br />
The instruction to extract data from a database is called a database query.    A query consists of search criteria expressed in a database language called    SQL (Structured Query Language). The SQL query is written into the page’s    server-side scripts or tags. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">An    application server cannot communicate directly with a database because the database’s    proprietary format renders the data undecipherable in much the same way that    a Word document opened in Notepad is undecipherable. The application server    can communicate only through the intermediary of a database driver. A database    driver is software that acts like an interpreter between the application server    and the database. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">After    the driver establishes communication, the query is executed against the database    and a recordset is created. A recordset is a subset of data extracted from one    or more tables in a database. The recordset is returned to the application server    and the data used in the dynamic page. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Here’s    a simple database query written in SQL: </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">SELECT    lastname, firstname, fitpoints<br />
FROM employees<br />
This statement creates a three-column recordset and fills it with rows containing    the last name, first name, and fitness points of all employees in the database.    For more information, see SQL Primer. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Here’s    an illustration of the process of querying a database and returning data to    the browser:</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/webserver.gif" height="673" width="624" /></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can use almost any database with your web application, as long as you have the    appropriate database driver for it. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    you plan to build small low-cost applications, you can use a file-based database,    such as one created in Microsoft Access. If you plan to build robust, business-critical    applications, you can use a server-based database, such as one created in Microsoft    SQL Server, Oracle 9i, or MySQL. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    your database is located on a system other than your web server, make sure you    have a fast connection between the two systems so that your web application    can operate quickly and efficiently. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="creatingfirstweb"></a>Creating    Your First Website in Dreamweaver </b><br />
This chapter provides a series of brief lessons that guide you through the process    of creating a simple static website using the visual authoring tools in Macromedia    Dreamweaver MX. For information on using the hand-coding tools in Dreamweaver,    see Editing code in Dreamweaver; for information on creating a database-driven    dynamic web application, see Understanding Web Applications. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    order of lessons in this chapter follows one possible workflow for creating    a site. When creating your own sites, you can follow whatever workflow is most    comfortable for you. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="setupalocalsite"></a>Set    up a local site </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">    The most common approach to creating a website using Dreamweaver is to create    and edit pages on your local disk, and then upload copies of those pages to    a remote web server to make them publicly available. It’s possible to    use Dreamweaver in other ways (such as running a web server on your local computer,    or uploading files to a staging server, or using a mounted disk as if it were    your local disk), but the lessons in this guide assume that you’re working    locally and then uploading to a remote server. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In    Dreamweaver, the word site is used as shorthand to refer to any of the following    things: </font></p>
<div align="justify">
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A website:        a set of pages on a server, to be viewed by a visitor to the site using        a web browser.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A remote site:        the files on the server that make up a website, from your (the author’s)        point of view rather than a visitor’s point of view.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A local site:        the files on your local disk that correspond to the files in the remote        site. You edit the files on your local disk, then upload them to the remote        site.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A Dreamweaver        site definition: a set of defining characteristics for a local site, plus        information on how the local site corresponds to a remote site.</font></li>
</ul>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Normally,    you would start creating a website by planning it: figuring out how many pages    to create, what content appears on each page, and how the pages are connected    to each other. In this lesson, though, the site you’re creating is a very    simple one, so it doesn’t take much planning: it will consist of only    two web pages, with links between them. So for this site, you can skip the planning,    and proceed to creating a site definition. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You’ll    create a site definition using the Site Definition dialog box. You can fill    in this dialog box in either of two views: Basic or Advanced. The Basic approach    guides you through site setup step by step. If you’d rather edit site    information without guidance, you can click the Advanced tab at any time. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    following procedure describes how to set options in the Basic version of the    dialog box, which is also known as the Site Definition Wizard. For details of    how to set options in the Advanced version, click the Advanced tab and then    click the Help button. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    define a site: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Site        &gt; New Site. (That is, choose New Site from the Site menu.)<br />
The Site Definition dialog box appears</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the dialog        box is showing the Advanced tab, click Basic.<br />
The first screen of the Site Definition Wizard appears, asking you to enter        a name for your site. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the text        box, enter a name to identify the site within Dreamweaver. The name can        be anything you want. For example, you could name the site Global Car Rental.        </font></li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/sitedefine.jpg" height="375" width="372" /><br />
</font></div>
<ol start="4">
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        Next to proceed to the next step.<br />
The next screen of the wizard appears, asking if you want to work with a        server technology.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select        the No option to indicate that for now, this site is a static site, with        no dynamic pages.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/siteask.jpg" height="375" width="372" /> </font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        Next to proceed to the next step.<br />
The next screen of the wizard appears, asking how you want to work with        your files.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select        the option labeled “Edit local copies on my machine, then upload to        server when ready (recommended).”<br />
There are a variety of ways that you can work with files during site development,        but for the purposes of this lesson, choose this option.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The        text box allows you to specify a folder on your local disk where Dreamweaver        should store the local version of the site’s files. It’s easier        to specify an accurate folder name if you browse to the folder rather than        typing the path, so click the folder icon next to the text box.<br />
The Choose Local Root Folder for Site dialog box appears. </font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In        the Choose Local Root Folder for Site dialog box, start by navigating to        a folder on your local disk where you can store all of your sites. Don’t        click OK yet.<br />
<b><br />
Note:</b> This sites folder will eventually contain multiple sites,        so don’t choose the sites folder as the local root folder. You will        soon create a local root folder for this particular site inside the sites        folder. </font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Still        in the Choose Local Root Folder for Site dialog box, create a new folder        inside your Sites folder. Name the new folder GettingStarted, and click        OK to dismiss the Choose Local Root Folder for Site dialog box.<br />
This new folder is the local root folder for your site. </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/sitedefinefinal.jpg" height="375" width="372" /></font></p>
</li>
<li>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        Next to proceed to the next step.<br />
The next screen of the wizard appears, asking how you connect to your remote        server.</font></li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">For        now, choose None from the pop-up menu. Click Next to proceed to the next        step.<br />
The next screen of the wizard appears, showing a summary of your settings.        </font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        Done to finish.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        OK to allow Dreamweaver to create the site cache.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/sitefiles.jpg" height="338" width="208" /><br />
The Site panel normally shows all the files and folders in your site, but        right now your site doesn’t contain any files or folders. When there        are files in a site, the file list in the Site panel acts as a file manager,        allowing you to copy, paste, delete, move, and open files just as you would        on a computer desktop. </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If        you already have a set of local HTML files that you want to use to create        a website, you can use the file browser in the Site panel to copy those        files into your newly created site’s folder. However, you may want        to complete the lessons in this guide using the files provided with Dreamweaver        before you start using your own files.</font></p>
</li>
</ol>
<div align="justify"></div>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Add assets    to your site </b><br />
After creating a local site, if you have already created assets (images or other    pieces of content) for the site, place the assets in a folder inside the local    site’s root folder. Then when you’re ready to add content to your    pages, the assets will be ready to use. </font></p>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The images and    text files for the Global Car Rental site are provided with Dreamweaver. If    you’re creating the Global Car Rental pages, you must copy the images    for the site into your site’s local root folder. You can do this using    the Site panel. </font></p>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The assets are    inside a folder called Design. For simplicity and consistency with the rest    of this Getting Started guide, you’ll copy the entire Design folder into    your site, then work inside that folder. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>    To copy a folder of images into your site’s local root folder: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the Site        panel isn’t already open, open it by choosing Window &gt; Site.<br />
The Site panel appears. (If the Site panel was already open, it may not        appear at this step. If the Site panel does not appear, choose Window &gt;        Site again to display it.) </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Site        panel, expand the Desktop (Windows) or Computer (Macintosh) icon to see        your available disks.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Expand folders        as necessary to reach the Dreamweaver application folder.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Expand the        Samples folder.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Expand the        GettingStarted folder in the Samples folder.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        Design folder in the GettingStarted folder and press Control+C (Windows)        or Command+C (Macintosh) to copy it.<br />
The Design folder contains a folder named Assets, which contains various        assets related to the site, including an images subfolder.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Still in the        Site panel, scroll to your site’s local root folder (the folder that        you created when you defined the site) and select that folder. Then press        Control+V (Windows) or Command+V (Macintosh) to paste a copy of the Design        folder into your site. </font></li>
</ol>
</div>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="createandsaveanewpage"></a>Create    and save a new page </b></p>
<p>Now that your site is set up, you can create web pages to populate it. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When    you started Dreamweaver, a blank HTML document was automatically created. Before    you proceed, close that document. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    close the default blank document: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> Choose File        &gt; Close.<br />
The New Document dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/newdocument.jpg" height="297" width="396" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the category        list on the left, select the Page Designs category.<br />
The list in the middle column of the dialog box is relabeled Page Designs.        A list of pre-designed page designs appears.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Scroll down        in the Page Designs list and choose the item named Text: Article D with        Navigation.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Note: There        is another item with a similar name. Be careful not to choose the item named        Text: Article D, which has no navigation bar.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Make sure        the Document radio button is selected at the lower right of the dialog box.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Create.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A new page        appears, using the layout you chose, in a new Document window. The page        is filled with placeholder “Lorem ipsum” text to show how the        page design will look when real text is added to it.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/untitledocument.jpg" height="235" width="365" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save your        document.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    save your new page: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose File        &gt; Save.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Save        As dialog box, browse to the Design folder inside the site root folder.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter the        filename index.htm.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Save.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="setapagetitle"></a>Set    a page title </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can set a variety of properties for a page, including its title, background    color, text color, and so on. (To set page properties, choose Modify &gt; Page    Properties.) But if you just want to set the page title (the title that appears    in the browser’s title bar), you can do that in the Document toolbar.    </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    set a page title for your document: </b> </font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the Document        toolbar isn’t already visible, choose View &gt; Toolbars &gt; Document.<br />
Dreamweaver’s Document toolbar appears. In the integrated workspace,        it appears at the top of the document area by default; in the floating workspace,        it appears as part of the Document window.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/titlebar.jpg" height="218" width="606" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Title        text box, where it says “Untitled Document,” type a title for        the page, such as Global Car Rental Home Page. Then press Enter (Windows)        or Return (Macintosh) to see the page title update in the Document window’s        title bar.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save your        document.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="addtext"></a>Add    text </b><br />
As you enter and format text in Design view, Dreamweaver creates the underlying    HTML code. To enter code directly, use Code view. For information on Code view.<br />
The predesigned pages provided with Dreamweaver contain placeholder “Lorem    ipsum” text; if you’re basing your page on a predesigned page, you’ll    have to replace the placeholder text with your own text when you’re ready    to start adding content. It can be useful to leave the placeholder text in place    until you’re done with design and layout, though, so that you or your    client can look at the layout without being distracted by the text. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    add text to your page: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> Triple-click        in the bold placeholder text at the top of the left column (under the image        placeholder) to select the entire bold paragraph.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Type Safety        Tips (or your own heading text if you prefer).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        three paragraphs of placeholder text below the horizontal rule.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Type the following        text (or your own text if you prefer):<br />
The safety of our loyal customers is important to us. Read these safety        tips to ensure that your next trip goes off without a hitch! </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the right        column, triple-click the word “News” and type Globe-Trotter        Promotions to replace it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Site        panel, locate the promotions.txt file in your Assets folder. Double-click        the file’s icon to open it.<br />
This file contains copy for Global Car Rentals special promotions.<br />
<b>Note</b> that the text file appears in a new Document window        with a dark bar down the left side. This window is in Code view, and can’t        be switched to Design view because the file is not an HTML file</font></li>
</ol>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/text.jpg" height="167" width="368" /><br />
</font></div>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>      Note</b>: If you prefer, use your own text on the page instead of using      the provided text. </font></div>
</div>
<ol>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In        the promotions.txt Document window, press Control+A (Windows) or Command+A        (Macintosh) to select all the text, then choose Edit &gt; Copy to copy the        text.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In        the index.htm Document window, select all of the placeholder text in the        lower cell of the right-hand column, and choose Edit &gt; Paste.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The        text is pasted into the table.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        just before the word “Rent” (the second paragraph of text you        just pasted), and choose Insert &gt; Horizontal Rule to put a horizontal        line between the two promotions.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save        your document</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Switch        to the promotions.txt file. Close that file by choosing File &gt; Close.</font></div>
</li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Add    styles to the text </b></p>
<p>There are several ways to style text in HTML. One approach is to use Cascading    Style Sheets (CSS) to define specific HTML tags as being formatted in specific    ways. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">This    lesson shows how to create a simple CSS style sheet from a predesigned style    sheet, then apply the new style sheet to text and modify the styles. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="createcss"></a>To    create a CSS style sheet: </b> </font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose File        &gt; New.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the New        Document dialog box, select the CSS Style Sheets category from the category        list on the left.<br />
The list in the middle column of the dialog box is relabeled CSS Style Sheets.        A list of pre-designed style sheets appears.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the CSS        Style Sheets list, select a style sheet. For the Global Car Rental site,        select Basic: Verdana, which redefines the body, td, and th tags by specifying        fonts for them. Then click Create .<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/newtext.jpg" height="300" width="400" /><br />
Dreamweaver creates a new text file containing a small set of predefined        CSS styles. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose File        &gt; Save to save the new CSS file. Save it in the site’s assets folder;        name it text.css (or any other name you like).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose File        &gt; Close to close the CSS file.</font></li>
</ol>
</div>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    style your text using CSS styles: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> In the Window        menu, choose an HTML file (such as index.htm).<br />
<b>Note</b>: If your system preferences are set to not show file        extensions, the index.htm file appears in the Window menu with the name        index.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; CSS Styles to display the CSS Styles panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">At the top        of the CSS Styles panel, click the Edit Styles radio button to show available        styles.<br />
If you haven’t previously defined styles for this document, no styles        are available. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">At the bottom        of the CSS Styles panel, click the Attach Style Sheet button.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/css.jpg" height="44" width="58" /></font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">n the Link        External Style Sheet dialog box, click Browse to locate a style sheet.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Select        Style Sheet File dialog box, browse to and select the new style sheet you        created in the assets folder, then click OK (Windows) or Choose (Macintosh)        to attach the style sheet. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Link        External Style Sheet dialog box, click OK to attach the style sheet.<br />
The style sheet’s name and contents appear in the CSS Styles panel.        The styles defined in the style sheet are applied to the text in the HTML        document. For example, body text appears in Verdana. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save your        document.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="editcss"></a>To    edit the styles in the style sheet: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">At the top        of the CSS Styles panel, click the Edit Styles radio button to show available        styles.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        name of the CSS file in the CSS Styles panel and click the Edit Style Sheet        button at the bottom of the CSS Styles panel.<b><br />
</b><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/edittext.jpg" height="44" width="58" /><br />
A dialog box appears showing the names of the styles in the style sheet.        </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select one        of the styles, such as body, and click Edit.<br />
<b>The CSS Style Definition dialog box appears.<br />
</b><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/cssstyle.jpg" height="283" width="400" /></font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter a size        for the text, such as 13 pixels. Adjust other options as you like.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK to        redefine the style.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Edit the other        styles. To create the styles used in the Global Car Rental site, set the        body, td, and th styles to a size of 13 pixels.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When you’re        done editing styles, click the Save button to save your changes and close        the stylesheet dialog box.<br />
The changed styles are applied to your document. For example, body text        appears in 13-pixel Verdana. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="addimage"></a>Add    images<br />
</b>In this lesson, you can add images to the page you’re working    on. If you have your own images, you can use them instead, but the first time    you try adding an image, we recommend using one supplied with Dreamweaver’s    sample site. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    add an image to your document: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save your        document if you haven’t already done so.<br />
You can insert an image into an unsaved document, but if you do, a dialog        box will appear, informing you that the URL used for the image will be the        full local path to the image. If you take this approach, Dreamweaver fixes        the URLs when you do save the document, but it’s easiest to save the        document before adding images. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To insert        an image in place of an existing image placeholder, double-click the placeholder.        For example, to insert the company logo at the top left of the Global Car        Rental page, double-click the small placeholder that’s labeled “image        (100 x 50).”<br />
The Select Image Source dialog box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Near the bottom        of the dialog box, make sure that the Relative To pop-up menu is set to        Document.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Browse to        an image in your assets folder (such as logo.jpg).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK or        Select (Windows) or Open or Choose (Macintosh) to insert the image.<br />
In the Document window, the image appears where the placeholder was. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        large image placeholder that you created .</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Make sure        the Site panel and the Property inspector are showing (choose Window &gt;        Site Files and Window &gt; Properties if they aren’t visible).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, drag from the Src text box’s Point-to-File icon to the        Site panel. (Make sure to drag from the Point-to-File icon next to the Src        text box, not the one next to the Link text box.) Continue to hold the mouse        button down as you point to the assets folder (if the folder is closed);        the folder opens. Continue to hold the button down as you point to the images        folder; that folder opens as well. Continue to hold the button down until        the pointer is over the vintage.jpg file. Release the mouse button to select        vintage.jpg.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/imageplaceholder.jpg" height="25" width="25" /><br />
In the Document window, the image appears where the placeholder was. If        the wrong image appears, look at the filename in the Src text box; if you        selected the wrong file, drag the Point-to-File icon again. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To insert        images in places where you don’t already have placeholders, click        in the Design view to place the insertion point where you want the image,        then choose Insert &gt; Image.<br />
If you insert an image for which the image file isn’t inside your        site’s local root folder, Dreamweaver provides the option to automatically        copy the image into the site. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save your        document. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="setbackgroundscolors"></a>Set    background colors </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In    the predesigned pages provided with Dreamweaver, the background colors of table    cells are mostly set to gray; for most sites, you’ll have to change the    colors to match your site’s color scheme. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    set the background color of a table cell: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the Property        inspector isn’t open, choose Window &gt; Properties to open it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the Property        inspector is collapsed (showing only its title bar), click the expander        arrow in the title bar to expand it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the Property        inspector isn’t showing all properties, click the expander arrow at        the lower right corner of the Property inspector to view all properties.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/properties.jpg" height="56" width="400" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Control-click        (Windows) or Command-click (Macintosh) a cell to select the cell. For example,        in the Global Car Rental sample page, there’s now a table cell that        contains the logo image for the car rental company; Control-click or Command-click        the cell that contains that logo image.<br />
The lower half of the Property inspector shows cell properties. If the lower        half of the Property inspector isn’t visible, click the expander arrow        at the lower right corner of the Property inspector to view all properties.        </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, click the Background Color button that appears next to the lower        of the two Bg labels.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/bgcolor.jpg" height="56" width="71" /><br />
The color picker appears and the pointer changes to an eyedropper.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/color.gif" height="143" width="209" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a color.        You can either select a color in the color picker’s palette, or click        anywhere on your display to select the color of the pixel you clicked. For        example, click the background of the Global logo image to make the background        color of the table cell match the image background color.<br />
The table cell’s background color changes to the color you picked.        </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Repeat that        procedure for each table cell that you want to change the background color        of. In the Global Car Rental sample page, change the background colors of        all of the navigation-bar table cells and of the header cell in the second        column of text (the cell that now contains the text “Globe-Trotter        Promotions”), to make them all match the background color of the Global        logo.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save your        document.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="lokkatthecode"></a>Look    at the code<br />
</b>Take a quick time-out for a look at what Dreamweaver is doing when    you add content to a page. As you add text, images, and other content, Dreamweaver    generates HTML code. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Dreamweaver    lets you view your document in either of two ways: Design view (where the document    looks much like it would look in a browser), and Code view (where you can see    the underlying HTML code). You can also use a split view that shows both Code    and Design views. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    view the HTML code for your document: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the Document        toolbar isn’t already visible, choose View &gt; Toolbars &gt; Document.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        toolbar, click the Code and Design view button.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/code.gif" height="39" width="40" /><br />
The window splits, showing the underlying HTML code.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/code_design.gif" height="300" width="400" /> </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="toshowdesignview"></a>To    show Design view only: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the Document        toolbar isn’t already visible, choose View &gt; Toolbars &gt; Document.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        toolbar, click the Design view button.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/desingplate.gif" height="25" width="25" /> </font></li>
</ol>
</div>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    remove unnecessary material from the new page: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the new        customerService.htm page by double-clicking it in the Site panel.<br />
Look at the Document window’s title bar to be sure that you’re        looking at the customerService.htm file. The title bar should say “Global        Car Rental Home Page” and then a folder name and a filename; the filename        should be customerServe.htm (or whatever you named it in the previous procedure).        </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the customerService.htm        page, select the large image (the image showing the car in the main text        column) by clicking it.<br />
In the tag selector, click the &lt;td&gt; tag.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Press Backspace        (Windows) or Delete (Macintosh).<br />
Everything in the table cell, including the image and the text, is deleted.        </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save your        document.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    add text to the new page: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Site        panel, locate the custServInfo.htm file in your Assets folder. Double-click        the file’s icon to open it.<br />
This file contains content to be added to the customer service page. If        you were creating your own site, you would add your own content here, but        for the purposes of this lesson, this content is provided for you. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the custServInfo.htm        Document window, choose View &gt; Code to view the HTML code.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Still in the        custServInfo.htm Document window, press Control+A (Windows) or Command+A        (Macintosh) to select everything in the file.<br />
If you’re not in Code view when you do this, you may have to press        Control+A or Command+A several times to select everything; if the insertion        point is inside a table cell, Select All initially selects only that cell.        For simplicity, switch to Code view before selecting everything. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Press Control+C        (Windows) or Command+C (Macintosh) to copy everything.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Switch back        to the customerService.htm document. Click inside the now-empty main text        column (the wide column on the left).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Edit        &gt; Paste HTML.<br />
The HTML code that you copied from the custServInfo.htm file is pasted into        this document. (If you choose Edit &gt; Paste instead of Edit &gt; Paste        HTML, the HTML code is pasted into Design view as if it’s text. If        HTML code appears in your Design view at this step, choose Edit &gt; Undo        and try again.)</font></li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The      text.css style sheet is already attached to this page, so text is formatted      automatically. </font></p>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="addtextlinks"></a>Add    text links between pages </b></p>
<p>You can create links at any stage of the site-creation process. If you’re    following the lessons of this guide in order, then you’ve already created    your pages and placed content in them; so in this lesson you’ll create    links between the pages you’ve created. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    following are two other general approaches to creating links for a site: </font></p>
<div align="justify">
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Create a set        of dummy pages first, then add links between them, and then add content        to the pages.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">As you create        a page, specify links to pages that don’t exist yet; later, create        pages that have the filenames you linked to. </font></li>
</ul>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a link from the customer service page to index.htm:</b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Switch to        the customer service page if it’s not the current page. (If the page        is not open, open it by double-clicking its icon in the Site panel.)</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the bottom        of the wide text column on the left side, select the words “Home Page”.<br />
If you didn’t add text to the left column of the customer service        page when you created it, enter the words Home Page in that text column        and select those words. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the Property        inspector isn’t open, open it by choosing Window &gt; Properties.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        folder icon next to the Link text box in the Property inspector. Browse        to the index.htm file in your site’s local root folder.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Create    rollovers for graphical links </b></p>
<p>A rollover image is an image that appears to change when a visitor to your site    points to the image with the pointer. For example, a button on a page may appear    to light up when the visitor points to it. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A    rollover image consists of two images: the image displayed when the page first    loads in the browser, and the image displayed when the pointer moves over the    original image. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note</b>:    When creating a rollover, make sure to use two images that have the same dimensions.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="tocreatealink"></a>To    create a rollover: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Switch to        the main (index.htm) page if it’s not the current page. (If the page        is not open, open it by double-clicking its icon in the Site panel.)</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, place the insertion point where you want the rollover image to appear.        On the Global Car Rental main page, for example, double-click in the navigation-bar        table cell that says “Lorem” and press Backspace (Windows) or        Delete (Macintosh) to delete the text, leaving the insertion point in the        cell.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Insert        &gt; Interactive Images &gt; Rollover Image.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/rollover.gif" height="175" width="400" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Insert        Rollover Image dialog box, type a name for the image, such as home-image,        in the Image Name text box.<br />
This gives the image a unique name, and makes it easily identifiable in        the HTML code. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Original        Image text box, click Browse; then navigate to the btnHome.jpg file in your        site’s images folder (inside the assets folder). Make sure the Relative        To pop-up menu is set to Document; then click OK or Select (Windows) or        Open or Choose (Macintosh).<br />
The Original Image text box indicates which image to display when the page        first appears in the browser. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Rollover        Image text box, click Browse; then navigate to btnHome_on.jpg in your site’s        images folder. Make sure the Relative To pop-up menu is set to Document;        then click OK or Select (Windows) or Open or Choose (Macintosh).<br />
The Rollover Image text box indicates which image to display when the pointer        is pointing to the image in the browser.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Make sure        the Preload Rollover Image option is selected so the rollover images load        when the page opens in the browser, ensuring a quick transition between        images when a user moves the pointer over the original image.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the When        Clicked, Go To URL text box, click the Browse button and browse to index.htm.<br />
The index.htm file is the file that you’re editing, so this step causes        the rollover image to link to the page that you’re placing the rollover        image on. It might seem unnecessary to have a link to the page that the        link is on, but you’ll be using the same set of navigation rollovers        on other pages as well, so this link will allow visitors to return to the        index.htm page from other pages that contain this navigation bar. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK to        close the dialog box.<br />
The specified original image appears in the document.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save your        document.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="copynavigationbar"></a>Copy    the navigation bar </b><br />
Now that you’ve created a working navigation bar, you can reuse it in    all of your pages. In this lesson, you’ll copy the navigation-bar table    cells and paste them into your second page. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">There    are a variety of other ways to reuse content in Dreamweaver, including library    items, templates, and snippets. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    copy the navigation bar into another page: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> In the index.htm        file, click in the table cell that contains the Home rollover image.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the tag        selector, select the rightmost &lt;tr&gt; tag.<br />
The table row containing the three navigation-bar rollovers is selected.        </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Edit        &gt; Copy.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Switch to        the customerService.htm file.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click in the        navigation-bar table cell that says “Lorem.”</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the tag        selector, select the rightmost &lt;tr&gt; tag.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Edit        &gt; Paste.<br />
The navigation-bar rollover images are pasted in place of the existing table        cells.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save your        document.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="previewinbrowser"></a>Preview    in browser </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    Design view gives a rough idea of what your page will look like in a browser,    but the only way to be sure how it will look is to preview it in a browser.    Each version of each browser has its own quirks; Dreamweaver strives to produce    HTML that will look as similar as possible from one browser to another, but    sometimes differences can’t be avoided. (That’s why Dreamweaver    doesn’t display a preview directly; there’s no way for Dreamweaver    to mimic all the different behaviors of all the different browsers.) </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Preview    in Browser shows how the pages will look when you’ve published them. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    preview your pages: </b> </font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If index.htm        isn’t the current document, switch to it. (If it’s not open,        open it.)</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Press the        F12 key.<br />
Your primary browser starts if it’s not running already. It displays        the index page.<br />
<b>Note</b>: Dreamweaver should automatically detect your primary        browser and use that for previewing. If the preview doesn’t appear,        or if it doesn’t appear in the browser you expect, switch back to        Dreamweaver (if necessary) and choose File &gt; Preview in Browser &gt;        Edit Browser List. The Preview in Browser Preferences dialog box appears;        add the correct browser to the list. For more information, click the Help        button in the Preferences dialog box. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Move the pointer        to point to the rollover images to see the images change. Click links to        make sure they work. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="setupremotesite"></a>Set    up a remote site, then publish<br />
</b>You’ve now created a small but functional website. The next step    is to publish it by uploading the files to a remote web server. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Before    you can proceed, you must have access to a remote web server (such as your ISP’s    server, or a server owned by the client you’re working for, or an intranet    server within your company, or an IIS or PWS server on a Windows computer).    If you don’t already have access to such a server, contact your ISP, your    client, or your system administrator. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    following procedure works best if your remote root folder is empty. If your    remote site already contains files, then create an empty folder in your remote    site (on the server), and use that empty folder as your remote root folder.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="toconnecttoaremotesite"></a>To    connect to a remote site: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Site        &gt; Edit Sites.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a site        (such as Global Car Rental) and click Edit.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        Basic tab at the top of the dialog box.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You’ve        already filled in the first few steps in the Basic tab, when you set up        your local site, so click Next a few times, until the Sharing Files step        is highlighted at the top of the wizard.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/remotesite.gif" height="375" width="372" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the pop-up        menu labeled “How do you connect to your remote server?”, choose        a method for connecting to the remote site.<br />
The most common method for connecting to a server on the Internet is FTP;        the most common method for connecting a server on your intranet is Local/Network.        If you aren’t sure what to choose here, ask the server’s system        administrator. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you choose        FTP, enter the following options:</font></li>
</ol>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter the        hostname of the server (such as ftp.macromedia.com).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the text        box that asks what folder contains your files, enter the path on the server        from the ftp root folder to the remote site’s root folder. If you’re        not sure, consult your system administrator.<br />
In many cases, this text box should be left blank. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter your        user name and password in the appropriate text boxes and click Test Connection.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the connection        is unsuccessful, consult your system administrator.</font></li>
</ul>
<ol start="7">
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you choose        Local/Network, then click the folder icon next to the text box and browse        to the remote site’s root folder.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Next.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Don’t        enable check-in and check-out for this site.<br />
If you and your co-workers are working together on a larger site, check-in        and check-out help to prevent you from overwriting each others’ files.        For this site, though, you don’t need this feature. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Next.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Done        to finish setting up the remote site.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Done        again to finish editing the site.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="toupload"></a>To    upload your pages to a remote site: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Site        panel, select the site’s local root folder.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        Put Files button.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/upload.gif" height="42" width="48" /><br />
All of the site’s files are uploaded to the remote site. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open your        remote site in a browser to make sure everything uploaded correctly.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Switch    to the coding workspace </b><br />
If you didn’t do so during installation, you can make your workspace look    and feel like the popular coding environments of HomeSite and ColdFusion Studio.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    adopt the new coding workspace: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Edit        &gt; Preferences, then choose General from the list of categories on the        left.<br />
The General category appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/prefrences.gif" height="363" width="372" /></font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> </font><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        the Change Workspace button.<br />
The Workspace Setup dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/workspacesetup.gif" height="336" width="372" /> </font></li>
</ol>
</div>
<ol>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select        the Dreamweaver MX Workspace option, then select the Homesite/Coder-Style        option.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        OK twice to close the Preferences dialog box.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Close        Dreamweaver, and then restart it.</font></div>
</li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="copyafolder"></a>Copy    a Folder to Your Site</b><br />
Before you start the lessons, you need to set up a site and copy a folder into    the site. The integrated file browser in the Site panel enables you to view    your local disk and network. This is useful for working with files that are    not in the current site showing in the Site panel. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    copy pages to your site: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Site to open the Site panel, if it’s not already open.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Site        panel, from the Site pop-up menu, select the name of the site you defined        in the previous chapter.<br />
If you have not defined a site, see Set up a local site. You need to define        a site before you continue</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When you select        the site name from the pop-up menu, Dreamweaver displays the files in the        site. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Expand the        Desktop (Windows) or Computer (Macintosh) icon to see your available disks.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Expand folders        as necessary to reach the Dreamweaver application folder, and then expand        the Samples folder.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Samples        folder, expand the GettingStarted folder, then select the Code folder, and        press Control+C (Windows) or Command+C (Macintosh) to copy it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Scroll back        to the top of the Site panel, and select the site folder. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Press Control+V        (Windows) or Command+V (Macintosh) to paste a copy of the folder in your        site.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>View    the finished pages </b><br />
Before you start, you can view finished pages to see how your pages might look.    Of course, your pages may vary. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    view the finished pages: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Site to open the Site panel, if it’s not already open.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Expand the        Desktop (Windows) or Computer (Macintosh) icon to see your available disks.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Expand folders        as necessary to reach the Dreamweaver application folder, and then expand        the Samples folder.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Samples        folder, expand the GettingStarted folder, then expand the FinalSite folder.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the FinalSite        folder, double-click index.htm to open it, then double-click location_comp.htm.<br />
Dreamweaver displays the pages in the Document window. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Close the        pages when you are finished.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="openmultiplepages"></a>Open    multiple pages </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use    the Site panel to open the pages you need for this lesson. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    open pages: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Site to open the Site panel, if it’s not already open.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In your site,        expand the Code folder.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Double-click        index.htm to open it, then double-click location_start.htm.<br />
These are the two files you’ll need for this lesson. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, click the Show Code View button on the toolbar or choose View &gt;        Code to switch to Code view and see the file’s source code.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To switch        between the pages quickly, press Control+Tab or click the tab at the bottom        of the page (Windows only).<br />
<b>Note</b>: You must maximize the page to see the tabs.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/multipage.gif" height="173" width="324" /> </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Edit    a tag </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Next,    you’ll use the Tag Inspector to find a specific tag in the Locations page    and quickly make changes to it. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="taginspector"></a>To    edit a tag using the Tag Inspector:</b> </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open location_start.htm        in Code view, if it’s not already open.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Do one of        the following to open the Tag Inspector, if it’s not already open:<br />
Choose Window &gt; Tag Inspector.<br />
In the Code panel group, click the Tag Inspector tab.<br />
The Tag Inspector gives you a structured view of all the tags in your page.        It also displays the attributes of each tag.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/tagediting.gif" height="571" width="208" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window Code view, find the text for the heading “Rental Locations.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        non-breaking space entity (&amp;nbsp;) between the paragraph tags that follow        the heading:<br />
&lt;p&gt;&lt;FONT SIZE=&#8221;+2&#8243; COLOR=&#8221;#FF6600&#8243;&gt;Rental        Locations&lt;/FONT&gt;&lt;/p&gt;<br />
&lt;p&gt;<br />
&amp;nbsp;&lt;/p&gt;</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Insert        &gt; Table, then click OK in the Insert Table dialog box to accept the default        values.<br />
Dreamweaver inserts table code. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        Refresh button on the toolbar.<br />
The Tag Inspector panel updates so that focus is on the Table tag you just        inserted. A list of attributes appears below the tag. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, click a few different tags to see how the Tag Inspector updates        the tag and attributes it displays, then click the Table tag again so that        its attributes appear in the Tag Inspector.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Tag        Inspector panel, click in the empty text box beside the align attribute.<br />
An arrow for a pop-up menu appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        pop-up menu arrow, and select center.<br />
Dreamweaver changes the code in the Document window. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        Show Design View button on the toolbar or choose View &gt; Design to see        the table.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, choose File &gt; Save.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="addinsertbar"></a>Add    a link with the Insert bar </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Now,    you’ll add a link to the logo image you inserted so that when the user    clicks it, the home page opens. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">One    way you can create the link is by simply placing an anchor tag (&lt;a&gt;) around    the image tag in the code and setting the anchor tag’s attributes—with    or without the help of Code Hints. Another way to add the link is to use the    Insert bar. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    write code with the help of the Insert bar: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open location_start.htm        in Code view, if it’s not already open.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Highlight        the code for the logo.jpg image you inserted.<br />
Note: Make sure you highlight the entire &lt;img&gt; tag.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Common        tab of the Insert bar, click the Hyperlink button.<br />
The Hyperlink dialog box appears with the image tag already</font><br />
<font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/hyperlink.gif" height="200" width="406" /></font></li>
<li> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Link        text box, enter index.htm or click the folder icon to browse to it.<br />
Note: To link to a web page, enter the page’s URL.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.<br />
Dreamweaver inserts the code in your page to create the link around the        image.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose File        &gt; Save.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="inserttable"></a>Insert    a table </b></p>
<p>Now you’re ready to insert a table in the document. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, place the insertion point in the document, then do one of the following:<br />
Select Insert &gt; Table.<br />
In the Insert bar’s Common category, click the Table icon.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/table.gif" height="25" width="25" /><br />
The Insert Table dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/tableform.gif" height="166" width="349" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the dialog        box, set the following options:<br />
In the Rows text box, type 2.<br />
In the Columns text box, type 2.<br />
In the Width text box, type 600, and then select Pixels in the pop-up menu        to the right of the Width text box.<br />
Setting the width to 600 pixels creates a fixed width table. We’ll        discuss table width in more detail a little later in this tutorial.<br />
In the Border text box, type 1 to set a 1-pixel border around the table        and table cells. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.<br />
Dreamweaver inserts the table in the document<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/createtable.gif" height="215" width="345" /><br />
</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save your        document by doing one of the following:<br />
Select File &gt; Save.<br />
Press Control+S</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="modifytable"></a>Modify    the table </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Next,    you’ll modify the table’s layout. You’ll add rows and columns    to the table, and learn how to merge and split cells to create the desired page    layout. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click in the        top-left cell then drag down to the bottom row to select the left column.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/modifytable.gif" height="29" width="400" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select Modify        &gt; Table &gt; Insert Column.<br />
The table now contains three columns.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/modifynexttable.gif" height="29" width="400" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click in the        bottom left cell and then select Modify &gt; Table &gt; Insert Rows or Columns.<br />
The Insert Rows or Columns dialog box appears<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/tablemodifypict.gif" height="165" width="348" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the dialog        box, set the following options:<br />
For Insert, select Rows.<br />
</font> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Number        of Rows, type 2. </font><br />
<font face="Verdana, Arial, Helvetica, sans-serif" size="2">For Where, select        Above the Selection</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.<br />
The table updates. You now have a four-row by three-column table. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save your        changes (File &gt; Save). </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Merge    and split cells </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">By    merging and splitting cells you can customize a table’s design to fit    your layout needs. Next, you’ll see how to use menu options or the Property    inspector to merge or split table cells. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/mergetable.gif" height="153" width="426" /></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the document,        select the first two cells in the left column of the table, by dragging        your pointer from the top left cell to the cell below it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Modify        &gt; Table &gt; Merge Cells.<br />
The two cells merge into a single cell.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/mergingtable.gif" height="86" width="600" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click in the        third row of the second column, then drag to the right and down to select        the last two rows of cells in the second and third columns. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, click the Merge button to combine the cells.<br />
The selected cells merge into one cell.</font></li>
</ol>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/aftermerge.gif" height="57" width="400" /></font></div>
</div>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>You    can split a single cell or column.</b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> Click in        the top left cell.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, click the Split Cell button.<br />
The Split Cell dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/splittable.gif" height="165" width="348" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the dialog        box, set the following options:<br />
For Split Cell Into, select Columns.<br />
In Number of Rows, enter 2.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.<br />
The table is modified.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/splitafter.gif" height="57" width="400" /><br />
</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Change    row height and column width </b></p>
<p>Let’s adjust the table’s dimensions. You’ll increase the amount    of space between the table rows, and adjust the amount of space between the    table columns. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Move the pointer        along the bottom table border until it changes into a border selector, then        drag it down to resize the table.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/heighttable.gif" height="63" width="400" /><br />
</font></li>
</ol>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You can use        this method to resize the other row heights in the table if you’d        like.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Move the pointer        along a column border until it changes to a border selector, then drag it        to the left or right to change a column’s width.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When you are        done adjusting your table, save your document.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="addcolor"></a>Add    color to a table </b><br />
You can add color to any part of a table. You’ll start by adding a background    color to the entire table, then apply a different background color to cells    in the table. You’ll finish by changing the border color. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the document,        click in any cell of the table, then in the tag selector located at the        bottom left of the Document window, click the &lt;table&gt; tag to select        the entire table.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Property        inspector (Window &gt; Properties), if it isn’t already open.<br />
Properties for the selected table appear in the Property inspector.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/propeties.gif" height="87" width="400" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, in the Bg Color text box select a color by doing one of the following:<br />
Click the color picker pop-up, then choose a color from the color picker.<br />
Enter a color using a hexadecimal value, for example #CC9933.<br />
Enter a web-safe color name, such as goldenrod.<br />
A background color applies to the table</font></li>
</ol>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/bgcolortable.gif" height="177" width="400" /></font></div>
</div>
<ol start="4">
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You        can apply a background color to the cells of the table the same way. Click        in the top-left cell, then in the Property inspector, select a different        color in the Bg Color text box.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Color        additional cells as you desire.</font></div>
</li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Add    a border color </b></p>
<p>Now, you’ll set the table border color. Border color applies to both the    outside and inside borders of a table. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, select the table.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, in the Brdr Color text box, use the color picker to select a        border color for your table. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When you are        done, save your document.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Press F12        (Windows only) or select File &gt; Preview in Browser and select a browser        to view the document in.</font></li>
</ol>
</div>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="standardview"></a>Set    a relative width table in Standard view </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
A percentage-based table stretches and shrinks based on the width of a browser    window. (For example if you specify that a table uses a width of 75%, the table    stretches to fill 75% of the horizontal space regardless of the browser window    size. This can be useful in some instances, such as making sure a navigation    menu is always displayed when a window is resized. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When    you want to set the size of a table regardless of how a user resizes the browser    window, use pixel-based tables. When you want the table to stretch to the size    of the browser window, percentage-based tables are best. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To    see the difference in percentage-based and pixel-based tables, you’ll    add one of each to a page, then view it in a browser. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Dreamweaver,        choose File &gt; New.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the New        Document dialog box, the Basic Page category is already selected; in the        Basic Pages list, double-click HTML to create a new HTML document.<br />
The document opens in the Document window. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save this        file to your local site folder. Name it tableWidth</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Place the        insertion point in the document.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Common        tab of the Insert bar, click the Table button.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the dialog        box that appears, set the following options:<br />
In the Rows text box, type </font></li>
</ol>
</div>
<ol>
<li>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Columns        text box, type 3. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Width        text box, type 90, and select Percentage in the pop-up menu to the right        of the Width text box. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Border        text box, enter 1 to set a 1-pixel border around the table and table cells.        </font></li>
<li></li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click          OK.<br />
The table appears in the document.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click          in the top, middle cell and drag to the bottom cell to select the middle          column. </font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In          the Property inspector, use the color picker to apply a background color          to the column. </font></div>
</li>
</ul>
</li>
</ol>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="pagelayout"></a>Design    a page in Layout view </b><br />
Now that you’ve learned how to work with the Insert Table command, let’s    look at another way to work with tables—by drawing the table layout. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Next,    you’ll work in Layout view, which allows you to draw layout cells or layout    tables into which you can add content such as images, text, or other media.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In    Layout view you can draw layout cells and layout tables to define the design    areas of a document. You can start by inserting a table cell or a layout cell.    When you insert a layout cell first Dreamweaver automatically creates a table    to surround it. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Draw    a layout cell </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Insert        bar, click the Layout tab, then click the Layout view button to switch from        Standard view.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/standardview.gif" height="29" width="288" /><br />
The Getting Started in Layout View dialog box appears and describes the        Layout view options. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Review the        options, then click OK to close the dialog box. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Insert        bar there are two Layout options available—Draw Layout Cell and Draw        Layout Table; these options aren’t available in Standard view.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the Property        inspector isn’t already open, choose Window &gt; Properties to open        it. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Insert        bar, click the Draw Layout Cell button.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Move the pointer        to the Document window; the mouse pointer changes to a drawing tool (looks        like a small cross). Click in the upper left corner of the document, then        drag to draw a layout cell.<br />
When you release the mouse, a layout cell appears in a layout table.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/layout.gif" height="382" width="606" />The layout table expands        to fill the Document window, and sets the page’s layout area. The        white rectangle is the layout cell you drew. You can place additional layout        cells in the empty area of the layout table. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Draw another        cell to create a text area above the navigation buttons.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/changelayout.gif" height="425" width="428" /> </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Add    multiple layout cells </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Next    you’ll learn how to add a series of layout cells. You’ll add three    layout cells next to the cell you just created to create layout for the page’s    navigation buttons. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Insert        bar, click the Draw Layout Cell button; then hold down the Control key (Windows)        or Command key (Macintosh) so you can draw multiple cells in the table.        </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, position the pointer below the last cell you drew; then drag to        draw a layout cell.<br />
Continue to hold the Control key (Windows) or Command key (Macintosh) and        draw two more layout cells. Your screen should look similar to this:<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/multiplelayout.gif" height="425" width="428" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click in a        blank area of the Insert bar, to deselect the Draw Layout Cell tool. (The        drawing tool changes to a selection arrow.)</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Resize    a layout cell</b></p>
<p>To design a page precisely, you can set the size of cells you add in a document.    You can also reposition cells in the page. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        border of the layout cell to select it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To resize        a layout cell:<br />
In the Property inspector for the layout cell, type a number for the desired        cell width or height. For example, type 200 in the Height text box to set        the cell’s height to 200 pixels, then click in the document to see        the cell width change. </font></li>
</ol>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b> Note</b>:    If you enter a pixel width or height that exceeds the dimension of the layout    table, or that causes the cell to overlap another cell in a layout table, Dreamweaver    alerts you and adjusts the cell width to a valid width. </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
<b><br />
<a name="imageproperties"></a>Set image alignment </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
An image, like text, appears in the normal flow of HTML in a page and can appear    as a paragraph by itself, or as part of a paragraph of text. You can set the    alignment of an image in two ways in the Property inspector using the text alignment    or image alignment controls.</font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/imageproperties.gif" height="180" width="606" />    </font></div>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Text    alignment positions the paragraph in which the image is inserted and can be    used to align an image to the left or right margin or to center it. Image alignment    lets you set the relationship of an image to other content in the same paragraph    (including another image). In Dreamweaver, the Align pop-up menu lets you select    how the image aligns with the text. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:</b>    Not all of the image alignment options work in all browsers. In this tutorial    you will use alignment options that work in Microsoft Internet Explorer and    in Netscape Navigator. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>View    the completed document </b><br />
Before you begin, look at the completed file to see what you’ll do in    this tutorial. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose File        &gt; Open, and in the dialog box that appears, navigate to the GettingStarted        folder you created, then navigate to Tutorials/Completed and open the file        named imageAlign_comp.htm.<br />
The file opens in the Document window. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Press F12        (Windows only) or select File &gt; Preview in Browser and select a browser        to view the document in.<br />
The file shows three examples using image alignment and spacing to work        with images and text together. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When you are        done viewing the file close your browser window.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Set    image spacing<br />
</b>As you see, when you place an image in a paragraph, text appears right    next to the edge of the image. In the next step you’ll add a margin of    space between the image and text. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can use the horizontal and vertical space properties in the Property inspector    to create space around an image. The horizontal space property adds space to    the Left and right of the image, while the vertical space property adds space    above and below an image. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the image_align.htm        document, click the second image in the page (next to the table cell that        contains the text Spacing).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, enter 10 in the V Space text box to set the vertical spacing.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Move the pointer        to the H Space text box, enter 30, then press Enter or Return to set the        horizontal spacing.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/imagespaceproperties.gif" height="109" width="517" />A margin        of space is created between the text and the image. The spacing also affects        the distance between the image and the table border. </font></li>
</ol>
</div>
<p align="justify">&nbsp;</p>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>    Set space and alignment options </b></p>
<p>As the final step in this part of the tutorial, you’ll set both alignment    and space properties for the image. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the imageAlign.htm        document, click the third image in the page (next to the table cell that        contains the text Alignment and Spacing).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, in the Align pop-up menu choose Right.<br />
The image moves to the right. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the HSpace        text box, enter 30, then click elsewhere in the Property inspector or in        the Document window for the value to update.<br />
A margin of space is added between the image and text. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Set    image map areas </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    will create an image map so that a single image links to multiple pages. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Dreamweaver,        choose File &gt; Open, then navigate to and open the file named imagemap_start.htm.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the document,        click the image of the world map to select it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Property        inspector if it isn’t already open, and click the expander arrow in        the lower right area of the Property inspector to see all the image properties,        if necessary.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/mapimage.gif" height="160" width="606" /><br />
Image map options appear in the expanded Property inspector. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Map        Name text box, type Locations.<br />
<b>Tip</b>: If you create more than one image map in a document,        each map must have a unique name. Each image map can have multiple hotspots        as well. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        Rectangular Hotspot Tool to select it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, click in the area above and to the left of North America, then drag        the pointer down and to the right over the image to create a hotspot area.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/mapstyle.gif" height="249" width="400" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A blue layer        appears over the image, and the hotspot Property inspector appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/mapproperties.gif" height="72" width="429" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Link        text box, click the folder icon. In the dialog box that appears, navigate        to the file named location1.htm to set a link to it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Alt        text box, type North America.<br />
<b>Note</b>: You should always set alternate text for images in        your documents, including image maps, this provides descriptive information        about an image for page viewers who are using text-only browsers.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/maplink.gif" height="76" width="400" /><br />
That’s it—you’ve set the first hotspot. Let’s set        one more. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Open    a linked file in a new window </b></p>
<p>So you can see how hotspot tools differ, this time you’ll use the Polygon    Hotspot tool to define the hotspot area. The polygon tool allows you to set    connecting points to define a hotspot area. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You’ll    also learn how to open the linked document in a new window. </font></p>
<ol>
<li>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In        the Property inspector, click the Polygon Hotspot Tool to select it.</font></p>
</li>
<li>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In        the Document window, click the image where you want to start the hotspot,        and move the pointer to the next position; a line forms between the dots.</font></p>
</li>
<li>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Continue        clicking around the shape to define Europe as the hotspot area.<br />
<b>Note</b>: As you click, the image map area adjusts and fills        in, keep clicking around the shape to cover the area you want to include.        </font></li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When        you’re finished mapping the image, click the Arrow button in the Property        inspector to change the pointer from a drawing tool.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/linkmap.gif" height="278" width="424" /><br />
</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In        the Link text box, click the folder icon, then browse to the file named        location3.htm to open this file when the hotspot is clicked.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In        the Target pop-up menu, choose _blank.<br />
When a user clicks the hotspot, the Locations3 page will open in a new window.        </font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In        the Alt text box, enter Europe. </font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Press        F12 (Windows only) or select File &gt; Preview in Browser then select a        browser to view the document in and test the links.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Save        and close your file.</font></div>
</li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="cssdetail"></a>Open    the CSS Styles panel </b></p>
<p>You use the CSS Styles panel to create, view, apply or edit style attributes.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    CSS Styles panel has two views or modes. Use the Apply Styles view to apply    custom or class CSS styles, and you use the Edit Styles view to make changes    to styles you have applied to your document. You can create a new style while    working in either view. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the CSS        Styles panel (Window &gt; CSS Styles), if it is not already open.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/css.gif" height="285" width="225" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the CSS        Styles panel, click the New CSS Style button (+) at the bottom of the panel.<br />
The New CSS Style dialog box appears. </font></li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/cssstylw.gif" height="199" width="348" /></font></p>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Redefine    an HTML tag </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can apply CSS styles to any tag in a document. The first style you’ll    create will redefine the style attributes of the body tag. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the New        CSS Style dialog box, for Type, select Redefine HTML Tag.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Tag        pop-up menu, select body.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Define        In, select This Document Only.<br />
For now we’ll apply the style to this document, later you’ll        see how to export the style so you can use it in other pages in the site.        Your dialog box should look similar to this:<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/newcssstyle.gif" height="199" width="348" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.<br />
The CSS Style definition dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/cssproperties.gif" height="283" width="400" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Set the following        Type settings:<br />
In the Font pop-up menu, select Arial, Helvetica, sans serif.<br />
</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Size        pop-up menu, select 12 and pixels.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Color,        click the color picker, then use the eyedropper to select white.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="setapagebackground"></a>Set    a page background color </b><br />
Next, you’ll use the Background category in the CSS Styles panel to set    background options. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Under Category,        select Background.<br />
CSS background attributes appear.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/cssbody.gif" height="283" width="400" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Background        Color, do one of the following to set a background color:<br />
Click the color picker then use the eyedropper to select a dark blue or        move eyedropper to the Document window and select the blue in the Global        logo image.<br />
In the Background Color text box, enter #333366</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the CSS        Styles panel, select Edit Styles.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/cssroot.gif" height="285" width="225" /></p>
<p>The new style appears in the list along with a description of the style        attributes. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="styleforlinks"></a>Set    a style for links </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">With    the new style applied you can barely distinguish the hypertext links in the    document. Let’s create a style for the links. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the CSS        Styles panel, click the New CSS Style button (+) located at the bottom of        the panel.<br />
The New CSS Style dialog box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Type, select        Use CSS Selector.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Selector        pop-up menu, select a:link.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Define        In, select This Document Only.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.<br />
The CSS Style definition dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/cssdialogbox.gif" height="283" width="400" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Set the following        Type attributes for the link:<br />
In Decoration, select Overline</font></li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In          Color, in the text box, enter #FFCC99. </font></div>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To see the        style you applied to the links you must view the page in a browser, press        F12 to preview your page. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Export    styles to create an external style sheet </b></p>
<p>The CSS styles you’ve created so far have only applied to this document.    Internal style sheets apply only to the document in which they were created.    Now, you’ll learn how to create an external style sheet which contains    the styles you defined in this document. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose File        &gt; Export &gt; Export CSS Styles.<br />
In the Export CSS Styles dialog box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the dialog        box, in the Save In (Windows) or Where (Macintosh) pop-up menu, navigate        to your local site folder.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In File Name        (Windows) or Save As (Macintosh), name the file mystyle.css.<br />
<b>Note:</b> You can name a CSS style sheet any name you want,        with the following exceptions; the name must be lowercase and contain no        spaces.<br />
</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Save.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Attach    an external style sheet </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You’ll    attach the CSS style sheet you just created to another document in your site.    The document you’ll work with is the same as the original css_start.htm    file, before you added style to it. </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Dreamweaver,        open the Site panel (Window &gt; Site), if it isn’t already open.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Site        panel, locate the file named css_start2.htm, then double-click it to open        it in the Document window.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the CSS        Styles panel, click the Attach Style Sheet button located at the bottom        of the panel.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/css.jpg" height="44" width="58" /><br />
The Link External Style Sheet dialog box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the File/URL        text box, enter the path to mystyle.css or click Browse and in the dialog        box that appears navigate to the mystyle.css file, then click OK to select        it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Link        External Style Sheet dialog box, for Add As, select Link.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/externalcss.gif" height="134" width="420" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.<br />
The selected style sheet links to the current document, and the style attributes        are immediately applied.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="managingtag"></a>Managing    tag libraries </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can use the Tag Library Editor to manage the tag libraries in Dreamweaver. The    Tag Library Editor lets you add and delete tag libraries, tags, and attributes;    set properties for a tag library; and edit tags and attributes. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To    open the Tag Library Editor, choose Edit &gt; Tag Libraries. The Tag Library    Editor appears as follows. (The contents of this dialog box changes depending    on the selected tag.)</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/taglinrary.gif" height="320" width="376" />    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Importing    tags from XML files </b><br />
You can import tags from an XML Document Type Definition (DTD) file or a schema.    </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    import tags from an XML DTD or schema: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> Open the        Tag Library Editor (Edit &gt; Tag Libraries).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose DTD Schema &gt; Import XML DTD or Schema File.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter the        file or URL of the DTD or schema file.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter the        prefix to be used with the tags.<br />
The prefix is used to identify a tag on a page as part of a particular tag        library. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="importingcustomaspnet"></a>Importing    custom ASP.NET tags<br />
</b><br />
<b>To import ASP.NET custom tags into Dreamweaver: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open an ASP.NET        page in Dreamweaver.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Tag        Library Editor (Edit &gt; Tag Libraries).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose one of the following:<br />
To import all the ASP.NET custom tags from the application server, choose        ASP.NET &gt; Import All ASP.NET Custom Tags.<br />
To import only certain custom tags from the application server, choose ASP.NET        &gt; Import Selected ASP.NET Custom Tags.<br />
The Import Selected ASP.NET Custom Tags dialog box appears, listing every        ASP.NET custom tag installed on the application server. Control-click (Windows)        or Command-click (Macintosh) tags from the list and click OK. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Importing    JSP tags from a file </b></p>
<p>You can import a JSP tag library into Dreamweaver from a variety of file types.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    import a JSP tag library into Dreamweaver: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open a JSP        page in Dreamweaver.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Tag        Library Editor (Edit &gt; Tag Libraries).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose JSP &gt; Import From File (*.tld, *.jar, *.zip).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Specify the        .tld, .jar, or .zip file containing the tag library.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter a URI        to identify the tag library.<br />
The URI (Uniform Resource Identifier) often consists of the URL of the organization        maintaining the tag library. The URL is not used to access the organization;        it is used to uniquely identify the tag library. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter the        prefix to be used with the tags.<br />
The prefix is used to identify a tag on a page as part of a particular tag        library. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Importing    JSP tags from a server (web.xml) </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can import JSP tags from a server</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    import JSP tags from a server: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open a JSP        page in Dreamweaver.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Tag        Library Editor (Edit &gt; Tag Libraries).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose JSP &gt; Import From Server (web.xml).<br />
The Import from Server dialog box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a tag        library.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter a URI        to identify the tag library.<br />
The URI (Uniform Resource Identifier) often consists of the URL of the organization        maintaining the tag library. The URL is not used to access the organization;        it is used to uniquely identify the tag library. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Importing    JRun tags </b><br />
</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    you use Macromedia JRun, you can import your JRun tags into Dreamweaver. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    import JRun tags into Dreamweaver: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open a JSP        page in Dreamweaver.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Tag        Library Editor (Edit &gt; Tag Libraries).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Tag        Library Editor, click the plus (+) button and choose JSP &gt; Import JRun        Server Tags From Folder.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Specify a        folder containing the JRun tags.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter a URI        to identify the tag library.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter the        prefix to be used with the tags.<br />
The prefix is used to identify a tag on a page as part of a particular tag        library. </font></li>
<li></li>
</ol>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If      you are finished making changes, click OK to close the Tag Library Editor.</font></div>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="usingcodehints"></a>Using    Code Hints </b></p>
<p>Code Hints lets you insert and edit code as you type in Code view (or Code inspector).    When you type certain characters, a list appears, suggesting options to complete    your entry. You can use this feature to insert or edit code, or just to see    the available attributes for a tag, the available parameters for a function,    or the available methods for an object. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    insert a tag using Code Hints: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Type a start        bracket (&lt;) to display a list of tags.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Press the        Escape key to close the list.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Scroll down        the list and double-click a tag to insert it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the tag        supports attributes, press the spacebar to display a list of allowed attributes        for the tag. Select an attribute and press Enter.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Type the value        for the attribute or, if the attribute takes only certain values, select        a value from the list of allowed values for the attribute.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">For every        attribute that you want to add for the tag, repeat the previous two steps,        making sure that you don’t press the spacebar between a value and        its end quote (&#8220;).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Type the end        bracket for the tag (&gt;) after the last attribute-value pair.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    edit a tag, do any of the following: </b></font></p>
<div align="justify">
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To add an        attribute, place the insertion point to the left of a tag end bracket (&gt;)        and press the spacebar to display a list of any supported attributes for        the tag. Insert the attribute and its value as previously described.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To change        an attribute, delete the attribute and add an attribute, as previously described.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To change        a value, delete the value and add a value, as previously described.</font></li>
</ul>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    insert or edit code for a function or object: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Edit        &gt; Preferences &gt; Code Hints or Dreamweaver &gt; Preferences &gt; Code        Hints (Mac OS X), then set the preferences to show without any delay.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Code view        (or Code inspector), type your functions or object code as usual.<br />
Whenever you type a keyword or character for which Code Hints is available,        a pop-up menu of completion options appears. When desired, select from the        list and press Enter. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Editing    tags with the Tag inspector </b></p>
<p>You can use the Tag inspector to edit tags in a property sheet similar to the    ones found in other integrated development environments (IDEs). </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    edit a tag using the Tag inspector: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Make sure        the Tag inspector is open (Window &gt; Tag Inspector).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Code view        (or Code inspector), click anywhere inside a tag.<br />
If the tag supports attributes, Dreamweaver displays the attributes and        their current values in the Tag inspector’s property sheet. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Make the changes        to the tag in the property sheet.<br />
Click an attribute name to type a value or, if the attribute takes pre-defined        values, to select from a list. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the attribute        takes a value from a source of dynamic content (like a database), click        the lightning bolt icon at the end of the selected attribute’s row        and select the source.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click elsewhere        in the panel to update the tag in your document.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Indenting    code blocks </b></p>
<p>As you write and edit your code in Code view or Code inspector, you can indent    code blocks to visually separate the block from the rest, making it easier to    find. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    indent a code block: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        line or lines of the code block that you want to indent. (You must select        the entire line.)</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Edit        &gt; Indent Code.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    code is indented. Choose Edit &gt; Outdent Code to move the indented code back.    </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Copying    and pasting code </b> </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can copy and paste source code from another application or from Code view itself.    You can copy and paste the code as text or as code with tags intact. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    copy and paste source code as text: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Copy the code        from Dreamweaver or another application.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Place the        insertion point directly in Design view, and choose Edit &gt; Paste. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    copy and paste source code with tags intact: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Copy the code        from Dreamweaver or another application.<br />
To copy from Design view, choose Edit &gt; Copy as HTML. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Do one of        the following:<br />
In Code view, position the insertion point, and choose Edit &gt; Paste.        If you are using Design view, press F5 to update its display of the document.<br />
In Design view, position the insertion point, and choose Edit &gt; Paste        as HTML.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Inserting    HTML comments </b><br />
</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A    comment is descriptive text that you insert in the HTML code to explain the    code or provide other information. The text of the comment appears only in Code    view and will not display in your web page in the browser. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    insert a comment: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Code view        or Design view, place the insertion point where you want the comment. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        Comment icon on the Common tab of the Insert bar.<br />
Use the tooltips to identify the Comment icon</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Code view,        Dreamweaver inserts a &lt;!&#8211; &#8211;&gt; tag in the page. Enter your comment        inside the tag.<br />
In Design view, Dreamweaver displays the Comment dialog box. Enter your        comment and click OK. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To display        comment markers in Design view, choose View &gt; Visual Aids &gt; Invisible        Elements. Make sure that comments are selected in the Invisible Elements        preferences, or the comment marker will not appear. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    add to an existing comment, do one of the following: </b></font></p>
<div align="justify">
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        Comment marker in Design view and enter text in the Property inspector.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Find the comment        in the code and add text directly to it. </font></li>
</ul>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="javascriptandvbscript"></a>Listing    JavaScript and VBScript functions in your page </b></p>
<p>You can view all of the JavaScript or VBScript functions in a page open in Code    view. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    view the script functions in a page: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the document        in Code view</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Make sure        the Document toolbar is displayed (View &gt; Toolbars &gt; Document).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        Code Navigation icon in the toolbar.<br />
The icon consists of a pair of braces ({ }).</font></li>
</ol>
</div>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note</b>:    The icon is disabled in Design view.</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    your code contains JavaScript or VBScript functions, they will appear in the    pop-up menu. To see the functions listed in alphabetical order, hold down Control    (Windows) or Option (Macintosh) while clicking the Code Navigation button. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    go to a function in your code: </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select    a function from the Code Navigation pop-up menu. The function will be highlighted    in Code view (or the Code inspector). </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>About    HTML source code searches </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use    the Source Code option in the Find or Replace dialog box to search for specific    text strings in the HTML source code. For example, a search for black dog in    the following code would produce two matches (in the alt attribute and in the    first sentence): </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;img    src=&#8221;barnaby.gif&#8221; width=&#8221;100&#8243; height=&#8221;100&#8243;<br />
alt=&#8221;Barnaby, a black dog.&#8221;&gt;&lt;br&gt;<br />
We saw several black dogs in the park yesterday. The black<br />
&lt;a href=&#8221;barnaby.html&#8221;&gt;dog&lt;/a&gt; we liked best was called    Barnaby.<br />
The phrase black dog also appears in the second sentence, but it doesn’t    match because it’s interrupted by a link. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Searching    for tags and attributes </b></p>
<p>Use the Specific Tag option in the Find or Replace dialog box to search for    specific tags, attributes, and attribute values. For example, you can search    for all img tags with no alt attribute. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    perform a tag search: </b><br />
</font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Edit        &gt; Find and Replace, and specify which files to search.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Specific        Tag from the Search For pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose a specific        tag from the pop-up menu next to Search For pop-up menu, enter a tag, or        choose [any tag].<br />
If you only want to search for all occurrences of the specified tag, press        the minus (-) button and skip to step 6. Otherwise, proceed with step 4.        </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Limit the        search with one of the following tag modifiers:<br />
With Attribute chooses an attribute that must be in the tag for it to match.        You can specify a particular value for the attribute or choose [any value].<br />
Without Attribute chooses an attribute that can’t be in the tag for        it to match. For example, choose this option to search for all IMG tags        with no ALT attribute.<br />
Containing specifies text or a tag that must be contained within the original        tag for it to match. For example, in the code &lt;b&gt;&lt;font face=&#8221;Arial&#8221;&gt;heading        1&lt;/font&gt;&lt;/b&gt;, the font tag is contained within the b tag.<br />
Not Containing specifies text or a tag that can’t be contained within        the original tag for it to match.<br />
Inside Tag specifies a tag that the target tag must be inside of for it        to match.<br />
Not Inside Tag specifies a tag that the target tag can’t be inside        of for it to match.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and repeat step 4 to limit the search further.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Initiate the        search:<br />
Click Find Next to highlight the next instance of the tag in the current        document, then in any subsequent document if searching in more than one        document.<br />
Click Find All to generate a list of all the instances of the tag in the        current document or, if you are searching a directory or site, generate        a list of documents that contain the tag. The list appears in the Search        tab of the Results panel.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
<b><a name="quicktageditor"></a>About the Quick Tag Editor </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    Quick Tag Editor has three modes: </font></p>
<div align="justify">
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Insert        HTML</b> mode to insert new HTML code </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Edit        Tag</b> mode to edit an existing tag </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Wrap        Tag</b> mode to wrap a new tag around the current selection</font></li>
</ul>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    mode in which the Quick Tag Editor opens depends on the current selection in    Design view. In all three modes, the basic procedure for using the Quick Tag    Editor is the same: open the editor, enter or edit tags and attributes, and    then close the editor. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can cycle through the various modes by pressing Control+T (Windows) or Command+T    (Macintosh) while the Quick Tag Editor is active. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    you use any invalid HTML in the Quick Tag Editor, Dreamweaver attempts to correct    it for you by inserting closing quotation marks and closing angle brackets where    needed. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Inserting    an HTML tag with the Quick Tag Editor </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can use the Quick Tag Editor to insert an HTML tag in your document. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    insert an HTML tag with the Quick Tag Editor: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Design        view, click in the page to place the insertion point where you want to insert        code.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Press Control+T        (Windows) or Command+T (Macintosh).<br />
The Quick Tag Editor opens in Insert HTML mode.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/taginspector.gif" height="59" width="426" /></font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter the        HTML tag and press Enter.<br />
The tag is inserted into your code. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Press Escape        to exit without making any changes.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Writing    a client-side script in Design view </b><br />
You can write a JavaScript or VBScript for your page without leaving Design    view. Before starting, make sure Dreamweaver displays script markers on the    page. To display script markers, select View &gt; Visual Aids &gt; Invisible    Elements. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="clientsidescript"></a>To    insert a client-side script in Design view: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Place the        insertion point where you want the script.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select Insert        &gt; Script Objects &gt; Script.<br />
The Script dialog box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Complete the        dialog box and click OK.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Linking    to an external script file </b><br />
You can create a link in your document to an external script file without leaving    Design view. Before starting, make sure Dreamweaver displays script markers    on the page. To display script markers, select View &gt; Visual Aids &gt; Invisible    Elements. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    link to an external script file: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Place the        insertion point where you want the script.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select Insert        &gt; Script Objects &gt; Script.<br />
The Script dialog box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK without        typing anything in the Content box.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        script marker in Design view of the Document window. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, click the folder icon to browse to and select the external script        file, or type the filename in the Source box.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Editing    a script in Design view </b></p>
<p>You can edit a script without leaving Design view. Before starting, make sure    Dreamweaver displays script markers on the page. To display script markers,    select View &gt; Visual Aids &gt; Invisible Elements. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    edit the script in Design view: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        script marker.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, click the Edit button.<br />
The script appears in the Script Properties dialog box. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you linked        to an external script file, the file automatically opens in Code view, where        you can make your edits. </font></li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note</b>:      If there is code between the script tags, the Script Properties dialog box      will open even if there is also a link to an external script file.</font></p>
</div>
<ol>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Make        edits to the script and click OK. </font></div>
</li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="usingframes"></a>Using    Frames</b> </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Frames    provide a way to divide a browser window into multiple regions, each of which    can display a different HTML document. In the most common use of frames, one    frame displays a document containing navigation controls, while another frame    displays a document with content. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">For    example, your frame layout might consist of three frames: one narrow frame on    the side that contains a navigation bar, one frame that runs along the top,    containing the logo and title of the website, and one large frame that takes    up the rest of the page and contains the main content. Each of these frames    displays a separate HTML document.</font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/frame.gif" height="469" width="635" />    </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
In this example, the document displayed in the top frame never changes as the    visitor navigates the site. The side frame navigation bar contains links; clicking    one of these links changes the content of the main content frame, but the contents    of the side frame itself remain static. The main content frame on the right    displays the appropriate document for whichever link the visitor clicks on the    left. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A    detailed discussion of all the ways to design and use frames, and the code required    for hand-coding them, is beyond the scope of this chapter. If you need detailed    information about the code used in advanced frame layouts, see a book about    frames and framesets. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Creating    frames and framesets </b> </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">There    are two ways to create a frameset in Dreamweaver: you can design it yourself,    or you can select from several predefined framesets. Choosing a predefined frameset    automatically sets up all the framesets and frames needed to create the layout    and is the easiest way to create a frames-based layout quickly. You can insert    a predefined frameset only in the Document window’s Design view. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Creating    a predefined frameset </b></p>
<p>Predefined framesets make it easy for you to select the type of frameset you    want to create. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">There    are two ways to create a predefined frameset: using the Insert bar and using    the New Document dialog box. The Insert bar allows you to create a frameset    and display the current document in one of the new frames; the New Document    dialog creates a new empty frameset. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    predefined frameset icons in the Frames category of the Insert bar and in the    Framesets category of the New Document dialog box provide a visual representation    of each frameset as applied to the current document.</font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/frametoolbox.gif" height="35" width="400" />    </font></div>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
When you apply a frameset using the Insert bar, Dreamweaver automatically sets    up the frameset to display the current document (the document in which the insertion    point is located) in one of the frames. The blue area of a predefined frameset    icon represents the current document, and the white areas represent frames that    will display other documents. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a predefined frameset and display an existing document in a frame: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Place the        insertion point in a document. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Do one of        the following:<br />
In the Frames category of the Insert bar, click the icon for a predefined        frameset.<br />
Choose a predefined frameset from the Insert &gt; Frames submenu.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a new empty predefined frameset: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose File        &gt; New.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the New        Document dialog box, select the Framesets category.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a frameset        from the Framesets list.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Create.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Creating    and editing a frameset </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Before    creating a frameset or working with frames, make the frame borders visible in    the Document window’s Design view by choosing View &gt;Visual Aids &gt;    Frame Borders. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a frameset: </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose    a splitting item (such as Split Frame Left or Split Frame Right) from the Modify    &gt; Frameset submenu. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    window is split into frames, and the document you started with appears in one    of the frames. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    split a frame into smaller frames, do one of the following: </b><br />
</font></p>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To split the        frame where the insertion point is, choose a splitting item from the Modify        &gt; Frameset submenu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To split a        frame or set of frames vertically or horizontally, drag a frame border from        the edge of the Design view into the middle of the Design view.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To split a        frame using a frame border that isn’t at the edge of the Design view,        Alt-drag (Windows) or Option-drag (Macintosh) a frame border.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To divide        a frame into four frames, drag a frame border from one of the corners of        the Design view into the middle of a frame. </font></li>
</ul>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Tip:    To create three frames, start with two frames and then split one of them. It’s    not easy to merge two adjacent frames without editing the frameset code, so    turning four frames into three frames is harder than turning two frames into    three frames.</font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    delete a frame: </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Drag    a frame border off the page or to a border of the parent frame. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    there’s unsaved content in a document in a frame that’s being removed,    Dreamweaver prompts you to save the document. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:</b>    You can’t remove a frameset entirely by dragging borders. To remove a    frameset, close the Document window that displays it. If the frameset file has    been saved, delete the file.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>About    nested framesets </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">    frameset inside another frameset is called a nested frameset. A single frameset    file can contain multiple nested framesets. Most web pages that use frames are    actually using nested frames, and most of the predefined framesets in Dreamweaver    also use nesting. Any set of frames in which there are different numbers of    frames in different rows or columns requires a nested frameset. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">For    example, the most common frame layout has one frame in the top row (where the    company’s logo appears) and two frames in the bottom row (a navigation    frame and a content frame). This layout requires a nested frameset: a two-row    frameset, with a two-column frameset nested in the second row.</font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/nestedframe.gif" height="234" width="624" />    </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></p>
<p>Dreamweaver takes care of nesting framesets as needed; if you use the frame-splitting    tools in Dreamweaver, you don’t need to worry about the details of which    frames are nested and which aren’t. For more information about the frame-splitting    tools.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">There    are two ways to nest framesets in HTML: the inner frameset can be defined either    in the same file as the outer frameset, or in a separate file of its own. Each    predefined frameset in Dreamweaver defines all of its framesets in the same    file. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Both    kinds of nesting produce the same visual results; it’s not easy to tell,    without looking at the code, which kind of nesting is being used. The most likely    situation in which an external frameset file would be used in Dreamweaver is    when you use the Open in Frame command to open a frameset file inside a frame;    doing this may result in problems with setting targets for links. It’s    generally simplest to keep all framesets defined in a single file. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Selecting    frames and framesets </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To    make changes to the properties of a frame or frameset, begin by selecting the    frame or frameset you want to change. You can select a frame or frameset either    in the Document window or by using the Frames panel. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When    you select a frame or frameset, a selection outline appears around the frame    or frameset in both the Frames panel and the Document window’s Design    view. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Selecting    frames and framesets in the Frames panel </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    Frames panel shows the hierarchy of the frameset structure in a way that may    not be apparent in the Document window. In the Frames panel, a very thick border    surrounds each frameset; each frame is surrounded by a thin gray line and is    identified by a frame name.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/framepannel.gif" height="289" width="265" /></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    display the Frames panel: </b><br />
Choose Window &gt; Others &gt; Frames. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    select a frame in the Frames panel: </b><br />
Click the frame in the Frames panel. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    select a frameset in the Frames panel: </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click    the border that surrounds the frameset in the Frames panel. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Saving    frame and frameset files </b></font></p>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Before    you can preview a frameset in a browser, you must save the frameset file and    all of the documents that are to be displayed in the frames. You can save each    frameset file and framed document individually, or you can save the frameset    file and all documents appearing in frames at once. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When    you use visual tools in Dreamweaver to create a set of frames, each new document    that appears in a frame is given a default filename. For example, the first    frameset file is named UntitledFrameset-1, while the first document in a frame    is named UntitledFrame-1. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When    you select one of the save commands, a dialog box appears, ready to save a document    with its default filename. Because the default filenames are so similar, it    may be difficult for you to determine which document you are saving. To identify    the frame that displays the document you’re saving, look at the frame    selection outline in the Document window (in Design view).</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    save a frameset file: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        frameset in the Frames panel or the Document window.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose one        of the following:<br />
To save the frameset file, choose File &gt; Save Frameset.<br />
To save the frameset file as a new file, choose File &gt; Save Frameset        As.<br />
If the frameset file has not previously been saved, these two commands are        equivalent</font></li>
</ol>
</div>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    save a document that appears in a frame: </b><br />
Click in the frame, then choose File &gt; Save Frame or File &gt; Save Frame    As. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    save all files associated with a set of frames: </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose    File &gt; Save All Frames. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">This    saves all open documents in the frameset, including the frameset file and all    framed documents. If the frameset file has not yet been saved, a heavy border    appears around the frameset in the Design view, and a dialog box allows you    to choose a filename. Then for each frame that hasn’t yet been saved,    a heavy border appears around the frame, and a dialog box allows you to choose    a filename. </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note</b>:    If you used File &gt; Open in Frame to open a document in a frame, then when    you save the frameset, the document you opened in the frame becomes the default    document to be displayed in that frame. If you don’t want that document    to be the default, don’t save the frameset file.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Viewing    and setting frame properties </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use    the Property inspector to view and set most frame properties. To change the    background color of a frame, set the background color of the document in the    frame. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    view or set frame properties: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a frame        by doing one of the following:<br />
Alt-click (Windows) or Shift-Option-click (Macintosh) a frame in the Document        window’s Design view.<br />
Click a frame in the Frames panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Properties to open the Property inspector if it isn’t already        open.<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/framesetproperties.gif" height="48" width="400" /></font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To see all        of the frame properties, click the expander arrow in the lower right corner        of the Property inspector.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    change the background color of a document in a frame: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Place the        insertion point in the frame.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Modify        &gt; Page Properties.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        Background pop-up menu to select a color.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Viewing    and setting frameset properties </b></p>
<p>Use the Property inspector to view and set most frameset properties. To set    the title of the selected frameset, use the Page Properties dialog box or the    Title field in the Document window’s toolbar. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    view or set frameset properties: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a frameset        by doing one of the following:<br />
Click a border between two frames in the frameset in the Document window’s        Design view.<br />
Click the border that surrounds a frameset in the Frames panel. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Properties to open the Property inspector if it isn’t already        open.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To see all        of the frameset properties, click the expander arrow in the lower right        corner of the Property inspector. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    set a title for a frameset document:</b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a frameset        by doing one of the following:<br />
Click a border between two frames in the frameset in the Document window’s        Design view.<br />
Click the border that surrounds a frameset in the Frames panel. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Title        field of the Document toolbar, type a name for the document.<br />
When a visitor views the frameset in a browser, the title appears in the        browser’s title bar. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Controlling    frame content with links:</b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To    use a link in one frame to open a document in another frame, you must set a    target for the link. The target attribute of a link specifies the frame or window    in which the linked content opens. For example, if your navigation bar is in    the left frame, and you want the linked material to appear in the main content    frame on the right, you must specify the name of the main content frame as the    target for each of the navigation bar links. When a visitor clicks a navigation    link, the specified content opens in the main frame. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To    select a frame in which to open a file, use the Target pop-up menu in the Property    inspector. You can set a file to replace the document being displayed in another    frame, to appear in place of the entire frameset, to appear in the frame where    the link was (by not choosing a target), or to open in a new browser window.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    target a frame: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Design        view, select text or an object.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Link        field of the Property inspector, do one of the following:<br />
Click the folder icon and select the file to link to.<br />
Drag the Point to File icon to select the file to link to. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Target        pop-up menu, choose the frame or window in which the linked document should        appear.<br />
If you named your frames in the Property inspector, the frame names appear        in this menu. Select a named frame to open the linked document in that frame.<br />
blank opens the linked document in a new browser window, leaving the current        window untouched.<br />
<b>_parent</b> opens the linked document in the parent frameset        of the frame the link appears in, replacing the entire frameset.<br />
<b>_self</b> opens the link in the current frame, replacing the        content in that frame.<br />
<b>_top</b> opens the linked document in the current browser window,        replacing all frames.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Handling    browsers that can’t display frames </b></p>
<p>Dreamweaver lets you specify content to display in text-based browsers and in    older graphical browsers that do not support frames. This content is stored    in the frameset file, wrapped in a noframes tag. When a browser that doesn’t    support frames loads the frameset file, the browser displays only the content    enclosed by the noframes tag. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note</b>:    Content in the noframes area should be more than just a note saying “You    should upgrade to a browser that can handle frames.” Some people have    good reasons for using a system that doesn’t allow them to view frames.    Try to make your content as accessible as possible to such visitors.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    provide content for browsers that don’t support frames:</b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Modify        &gt; Frameset &gt; Edit NoFrames Content.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To create        the NoFrames content, do one of the following:<br />
In the Document window, type or insert the content just as you would for        an ordinary document.<br />
Choose Window &gt; Code Inspector, place the insertion point between the        body tags that appear inside the noframes tags, and type the HTML code for        the content.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Modify        &gt; Frameset &gt; Edit NoFrames Content again to return to the normal view        of the frameset document.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Setting    frame Property inspector options </b></p>
<p>Use the Property inspector to name a frame and to set borders and margins. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Tip</b>:    To make a link change the contents of another frame, you must name the target    frame. To make it easier to create cross-frame links later, name each of your    frames when you create it.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    specify properties for the selected frame: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Name the frame.<br />
Frame Name is the name used by a link’s target attribute or by a script        to refer to the frame.<br />
<b>Note:</b> A frame name must be a single word; underscores (_)        are allowed, but hyphens (-), periods (.), and spaces are not. A frame name        must start with a letter (as opposed to a numeral). Frame names are case-sensitive.        Don’t use terms that are reserved words in JavaScript (such as top        or navigator) as frame names. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Change the        following options as desired:<br />
<b>Src</b> specifies the source document to display in the frame.        Click the folder icon to browse to and select a file. You can also open        a file in a frame by placing the insertion point in the frame and choosing        File &gt; Open in Frame.<br />
<b>Scroll</b> specifies whether scroll bars appear in the frame.        Setting this option to Default doesn’t set a value for the corresponding        attribute, allowing each browser to use its default value. Most browsers        default to Auto, meaning that scroll bars appear only when there is not        enough room in a browser window to display the full contents of the current        frame.<br />
<b>No Resize</b> prevents visitors from dragging the frame borders        to resize the frame in a browser. (You can always resize frames in Dreamweaver;        this option applies only to visitors viewing the frames in a browser.)<br />
<b>Borders </b>shows or hides the borders of the current frame        when it’s viewed in a browser. Choosing a Borders option for a frame        overrides the frameset’s border settings. The options are Yes (show        borders), No (hide borders), and Default; most browsers default to showing        borders, unless the parent frameset has Borders set to No. A border is hidden        only when all frames that share the border have Borders set to No, or when        the parent frameset’s Borders property is set to No and the frames        sharing the border have Borders set to Default.<br />
<b>Border Color </b>sets a border color for all of the frame’s        borders. This color applies to all borders that touch the frame, and overrides        the specified border color of the frameset.<br />
<b>Note</b>: There is an underlying logic to which frame borders        have a given border color applied to them, but that logic is complex; it        may be difficult to understand why certain borders change color when you        specify a border color. For detailed information about the effects of specifying        border colors, see a book on frames and framesets.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Set the following        margin options if you wish (if margin options aren’t visible, click        the expander arrow in the lower right corner of the Property inspector):<br />
<b>Margin Width </b>sets the width in pixels of the left and right        margins (the space between the frame borders and the content).<br />
<b>Margin Height</b> sets the height in pixels of the top and        bottom margins (the space between the frame borders and the content).<br />
<b>Note:</b> Setting the margin width and height for a frame is        not the same as setting margins in the Modify &gt; Page Properties dialog        box.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Setting    frameset Property inspector options.</b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use    frameset properties to set borders and frame sizes for a frameset. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Setting    a frame property overrides the setting for that property in a frameset. For    example, setting border properties in a frame overrides the border properties    set in the frameset. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To    set approximate sizes for frames, drag frame borders in the Document window’s    Design view. Then use the Property inspector to specify exact sizes, and to    specify how much space the browser allocates to a row or column of frames when    the browser window size doesn’t allow the frames to display at full size.    </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    specify border properties for the selected frameset: </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Change    the following options as desired:<br />
<b>Borders</b> determines whether borders should appear around frames    when the document is viewed in a browser. To display borders, select Yes; to    prevent the browser from displaying borders, select No. To allow the browser    to determine how borders are displayed, select Default. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Border</b>    Width specifies a width for all the borders in the frameset.<br />
<b>Border Colo</b>r sets a color for the borders. Use the color picker    to select a color, or type the hexadecimal value for a color. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    set frame sizes for rows and columns of the selected frameset: </b></font></p>
<div align="justify">
<ol>
<li>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click a          tab on the left side of the RowCol Selection area to select a row, or          click a tab on the top to select a column.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/frameproperties.gif" height="97" width="223" /></font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Value          field, enter a height for the selected row or a width for the selected          column.</font></li>
</ol>
</li>
</ol>
</div>
<ol>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To        specify how much space the browser allocates to each frame, choose from        the following choices in the Units menu:<br />
<b>Pixels </b>sets the size of the selected column or row to an        absolute value. This option is the best choice for a frame that should always        be the same size, such as a navigation bar. Frames with sizes specified        in pixels are allocated space before frames with sizes specified as percent        or relative. The most common approach to frame sizes is to set a left-side        frame to a fixed pixel width and to set a right-size frame to relative,        which allows the right frame to stretch to take up all the remaining space        after the pixel width is allocated.<br />
<b>Percent</b> specifies that the selected column or row should        be a percentage of the total width or height of its frameset. Frames with        units set to Percent are allocated space after frames with units set to        Pixels, but before frames with units set to Relative. </font></div>
</li>
</ol>
<blockquote>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Relative</b>      specifies that the selected column or row be allocated the rest of the available      space after Pixels and Percent frames have had space allocated; that remaining      space is divided proportionally among the frames with sizes set to Relative.      </font></div>
<div align="justify">
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>        Note:</b> When you choose Relative from the Units menu, any number        you’ve entered in the Value field disappears; if you want to specify        a number, you must re-enter it. If there’s only one row or column        set to Relative, though, there’s no need to enter a number, since        that row or column receives all the remaining space after the other rows        and columns have space allocated. To be certain of full cross-browser compatibility,        you can enter 1 in the Value field; that’s equivalent to entering        no value. </font></div>
</div>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Space      allocations for frames are complicated; for detailed information, see a book      on frames and framesets. </font></div>
</blockquote>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="creatinganhtml"></a>Creating    an HTML style </b></p>
<p>You can create styles in two ways: you can format the text in the document and    then create a style based on the selected text or you can create a style in    the HTML Styles panel by selecting the formatting attributes you want to apply.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a new HTML style: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the HTML        Styles panel, click the New Style icon; you can also choose Text &gt; HTML        Styles &gt; New Style.<br />
The Define HTML Style dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/htmlstyle.gif" height="406" width="261" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Name        text box, enter a name for the style.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">nder Apply        To, choose how this style will be applied by doing one of the following:<br />
To set a selection style, choose Selection.<br />
To set a paragraph style, choose Paragraph.<br />
<b>Note:</b> A paragraph style applies to the entire text block        in which the insertion point is located, regardless of what text is actually        selected. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">For When Applying,        choose whether to apply the HTML style in addition to the existing style        of the selected text or paragraph, or to clear the formatting of the selection        or paragraph and apply the new HTML style. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Under Font        Attributes, use the pop-up menus to select the formatting options you want        to apply.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you are        creating a paragraph style, under Paragraph Attributes, in the Format pop-up        menu, choose a paragraph tag (for example, paragraph, Heading1, Preformatted).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">For Alignment,        click the left, center, or right alignment button to set the paragraph alignment        you want.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Applying    an HTML style</b></p>
<p>Applying a style is as easy as selecting the text or paragraph you want the    style applied to, and then selecting the style in the HTML Styles panel. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    apply an HTML Style: </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Applying    a style is as easy as selecting the text or paragraph you want the style applied    to, and then selecting the style in the HTML Styles panel. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    apply an HTML Style: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the lower        left corner of the HTML Styles panel make sure the Apply option is selected,        to automatically apply the style you select.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window do one of the following to select the text you want the style applied        to:<br />
Place the insertion point anywhere in a paragraph to apply a paragraph style.<br />
Use the cursor to select the text you want a selection style applied to.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the HTML        Styles panel, click the HTML style you want to apply to the text.<br />
The text automatically updates in the Document window. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Editing    an HTML style </b></p>
<p>When you edit an HTML style, Dreamweaver does not automatically update text    that was previously formatted using the HTML style. To update the style to previously    formatted text, you must manually re-apply the style. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    edit an existing HTML style: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Make sure        no text is selected in the Document window.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the HTML        Styles panel, make sure the Auto Apply checkbox is deselected.<br />
If the Auto Apply option is turned on, the HTML style will be applied when        you select it in the HTML Styles panel. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the HTML        Styles panel, do one of the following:<br />
Right-click (Windows) or Control-click (Macintosh) the style, then choose        Edit from the context menu.<br />
Double-click the style.<br />
The Define HTML Style dialog box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the dialog        box, set style attribute options for the style.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To reset it        to the default options, click Clear.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Using    your HTML styles in other sites </b></p>
<p>You can use the HTML Styles panel to record the HTML styles you use in your    site, and then share them with other users, local sites, or remote sites. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">HTML    styles are automatically stored in your local site&#8217;s Library folder in a file    named Styles.xml. You can copy the Styles.xml file from the Library folder of    one local site to the Library folder of another local site and reuse styles    you create. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Note:    Each site can only contain one Styles.xml file; therefore, if you created new    HTML styles in the site to which you are copying a Styles.xml file, the file    you copy there will replace the existing file. You won&#8217;t lose any formatting    changes you&#8217;ve already applied, and you can recreate the styles by selecting    text in the document and defining a new HTML style.</font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    share your HTML styles with other sites or users: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Site or Site &gt; Site Files to open the Site panel in Site Files view.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Site        panel, locate and then open the Library folder.<br />
You’ll notice a file called styles.xml. This file contains all your        HTML styles for the site. You can put, get, check in, check out, and copy        this file as you would any other file in your site. You can also create        Design Notes for the styles.xml file. You must first check out the styles.xml        file before you can create or edit a style for a remote site.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="checkingspelling"></a>Checking    spelling </b><br />
</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use    the Check Spelling command in the Text menu to check the spelling in the current    document. The Check Spelling command ignores HTML tags and attribute values.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">By    default, the spelling checker uses the U.S. English spelling dictionary. To    change the dictionary, choose Edit &gt; Preferences &gt; General or Dreamweaver    &gt; Preferences &gt; General (Mac OS X), then in the Spelling Dictionary pop-up    menu select the dictionary you want to use.<br />
</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    check and correct spelling: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Text        &gt; Check Spelling or press Shift+F7.<br />
When Dreamweaver encounters an unrecognized word the Check Spelling dialog        box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Check        Spelling dialog box, choose the appropriate option based on how you want        the discrepancy handled:<br />
<b>Add to Personal </b>adds the unrecognized word to your personal        dictionary. </font></li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Ignore</b>      ignores this instance of the unrecognized word. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Ignore      All</b> ignores all instances of the unrecognized word. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Change</b>      replaces this instance of the unrecognized word with text that you type in      the Change To text box or with the selection in the Suggestions list. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Change      All</b> replaces all instances of the unrecognized word in the same manner.      </font></p>
</div>
<ol>
<p align="justify">&nbsp;</p>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="aboutimage"></a>About    images </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Many    different types of graphic file formats exist, but three graphic file formats    are generally used in web pages—GIF, JPEG, and PNG. Currently, GIF and    JPEG file formats are the best supported and can be viewed by most browsers.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">PNG    files are best suited for almost any type of web graphic due to their flexibility    and small file size; however, the display of PNG images is only partially supported    in Microsoft Internet Explorer (4.0 and later browsers) and Netscape Navigator    (4.04 and later browsers). So unless you are designing for a specific target    audience using a browser that supports the PNG format, use GIFs or JPEGs for    broader appeal. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>GIF</b>    (Graphic Interchange Format) files use a maximum of 256 colors, and are best    for displaying noncontinuous-tone images or those with large areas of flat colors,    such as navigation bars, buttons, icons, logos, or other images with uniform    colors and tones. </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>JPEG    </b>(Joint Photographic Experts Group) file format is the superior format    for photographic or continuous-tone images, because JPEG files can contain millions    of colors. As the quality of a JPEG file increases, so does the file size and    the file download time. You can often strike a good balance between the quality    of the image and the file size by compressing a JPEG file. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>PNG</b>    (Portable Network Group) file format is a patent-free replacement for GIFs that    includes support for indexed-color, grayscale, and true-color images, and alpha    channel support for transparency. PNG is the native file format of Macromedia    Fireworks MX. PNG files retain all the original layer, vector, color, and effects    information (such as drop shadows), and all elements are fully editable at all    times. Files must have the .png file extension to be recognized as PNG files    by Macromedia Dreamweaver MX. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note</b>:    PNG support in browsers is inconsistent; therefore, if you work with PNG files,    you should also export them as GIFs or JPEGs to ensure you have web-ready versions    of them.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Inserting    an image </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When    you insert an image into a Dreamweaver document, Dreamweaver automatically generates    a reference to the image file in the HTML source code. To ensure that this reference    is correct, the image file must be in the current site. If it is not in the    current site, Dreamweaver asks whether you want to copy the file into the site.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    insert an image: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Place the        insertion point where you want the image to appear in the Document window,        then do one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Common category of the Insert bar, click the Image icon.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/imagelogo.gif" height="25" width="25" /></font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Common category of the Insert bar, drag the Image icon to the Document            window (or to the Code view window if you are working in the code).            </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; Image. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Drag an            image from the Assets panel (Window &gt; Assets) to the desired location            in the Document window; then skip to step 3.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Drag an            image from the Site panel to the desired location in the Document window;            then skip to step 3.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Drag an            image from the desktop to the desired location in the Document window;            then skip to step 3. </font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the dialog        box that appears, do one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            File System to choose a graphic file.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Data Source to choose a dynamic image source.</font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Browse to        choose the image or content source you want to insert.<br />
If you are working in an unsaved document, Dreamweaver generates a file://        reference to the image file. When you save the document anywhere in the        site, Dreamweaver converts the reference to a document-relative path. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector (Window &gt; Properties), set properties for the image. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Inserting    an image placeholder </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">An    image placeholder is a graphic you use until final artwork is ready to be added    to a web page. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can define certain attributes of the placeholder: you can set the placeholder’s    size and color, as well as provide it with a text label. An image placeholder’s    color, size attributes, and label appear when the image placeholder is viewed    in the Dreamweaver Document window.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    insert an image placeholder: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, place the insertion point where you want to insert a placeholder        graphic. </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Common then click the Image Placeholder icon.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/imageplaceholder.gif" height="25" width="25" /></font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Common, then drag the Image Placeholder icon to the            Document window.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; Image Placeholder.</font></li>
</ul>
<blockquote></blockquote>
</li>
</ol>
<blockquote>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The        Image Placeholder dialog box appears. </font></p>
</blockquote>
</div>
<ol start="2">
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In        the dialog box, select options for the image placeholder. </font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        OK.</font></div>
</li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Aligning    an image </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use    the image Property inspector to set the alignment of an image in relation to    other elements in the same paragraph or line. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note</b>:    HTML does not provide a way to wrap text around the contours of an image, as    you can with some word processing applications</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can align an image to text, another image, a plug-in, or other elements in the    same line. You can also use the alignment buttons (left, right, and center)    to set the horizontal alignment of an image.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/imagealign.gif" height="145" width="375" /></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
<b>Default</b> generally specifies a baseline alignment. (The default    may vary depending on the site visitor’s browser.) </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Baseline    and Bottom</b> align the baseline of the text (or other element in the    same paragraph) to the bottom of the selected object. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Top    </b>aligns the top of an image to the top of the tallest item (image or    text) in the current line. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Middle</b>    aligns the middle of the image with the baseline of the current line. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>TextTop    </b>aligns the top of the image with the top of the tallest character in    the text line. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Absolute    Middle </b>aligns the middle of the image with the middle of the text in    the current line. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Absolute    Bottom</b> aligns to the bottom of the image with the bottom of the line    of text (which includes descenders, as in the letter g). </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Left</b>    places the selected image on the left margin, wrapping text around it to the    right. If left-aligned text precedes the object on the line, it generally forces    left-aligned objects to wrap to a new line. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Right</b>    places the image on the right margin, wrapping text around the object to the    left. If right-aligned text precedes the object on the line, it generally forces    right-aligned objects to wrap to a new line. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Creating    a rollover image </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">    rollover is an image that, when viewed in a browser, changes when the pointer    moves across it. A rollover actually consists of two images: the primary image    (the image displayed when the page first loads) and a secondary image (the image    that appears when the pointer moves over the primary image). Both images in    a rollover should be the same size; if the images are not the same size, Dreamweaver    automatically resizes the second image to match the properties of the first    image. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    cannot see the effect of a rollover image in the Dreamweaver Document window.    To see the rollover effect, press F12 to preview the page in a browser, then    roll the pointer over the image. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a rollover: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, place the insertion point where you want the rollover to appear.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Insert the        rollover using one of these methods: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Common, then click the Rollover Image icon.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Common, then drag the Rollover Image icon to the            desired location in the Document window.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; Interactive Images &gt;Rollover Image.<br />
The Insert Rollover Image dialog box appears. </font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Image        Name text box, type a name for the rollover.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Original        Image text box, click Browse and select the image you want displayed when        the page loads, or enter the image file’s path in the text box. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Rollover        Image text box, click Browse and select the image you want displayed when        the pointer rolls over the original image, or enter the image file’s        path in the text box.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you want        the images preloaded in the browser’s cache so no delay occurs when        the user rolls the pointer over the image, select the Preload Images option.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Alternate        Text, enter text to describe the image for viewers using a text-only browser.        (optional)</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the When        Clicked Go to URL text box, click Browse and select the file, or type the        path to the file that you want to open when a user clicks the rollover image.<br />
<b>Note</b>: If you don’t set a link for the image, Dreamweaver        inserts a null link (#) in the HTML source code to which the rollover behavior        is attached. If you remove the null link, the rollover image will no longer        work. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK to        close the Insert Rollover Image dialog box. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose File        &gt; Preview in Browser or press F12.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the browser,        move the pointer over the original image. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="creatingphotoalbum"></a>Creating    a Web photo album </b></p>
<p>The Create Web Photo Album command in Dreamweaver lets you automatically generate    a web site that showcases an album of images from a given folder. This command    uses JavaScript to call Fireworks, which creates a thumbnail and a larger-sized    image for each of the images in the folder. Dreamweaver then creates a web page    containing all the thumbnails, as well as links to the larger images. To use    the Create Web Photo Album, you must have both Dreamweaver and Fireworks 4 or    later installed on your system. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Before    you begin, place all of the images for your photo album in a single folder.    (The folder is not required to be in a site.) In addition, make sure that the    image filenames end in extensions recognized by the Create Web Photo Album command    (.gif, .jpg, .jpeg, .png, .psd, .tif, or .tiff). Images with unrecognized file    extensions are not included in the photo album. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a Web photo album:</b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Dreamweaver,        choose Commands &gt; Create Web Photo Album.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Photo        Album Title text field, enter a title. The title will be displayed in a        gray rectangle at the top of the page containing the thumbnails.<br />
If desired, you can enter up to two lines of additional text to appear directly        beneath the title, in the Subheading Info and Other Info text fields.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose the        folder containing source images by clicking the Browse button next to the        Source Images Folder text field. Then choose (or create) a destination folder        in which to place all the exported images and HTML files by clicking the        Browse button next to the Destination Folder text field.<br />
The destination folder should not already contain a photo album—if        it does, and if any new images have the same names as previously used images,        you might overwrite existing thumbnail and image files.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Specify display        options for the thumbnail images:<br />
Choose a size for the thumbnail images from the Thumbnail Size pop-up menu.        Images are scaled proportionally to create thumbnails that fit within a        square that has the indicated pixel dimensions.<br />
To display the filename of each original image below the corresponding thumbnail,        select Show Filenames.<br />
Enter the number of columns for the table that displays the thumbnails.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose a format        for the thumbnail images from the Thumbnail Format pop-up menu:<br />
<b>GIF WebSnap 128</b> creates GIF thumbnails that use a web adaptive        palette of up to 128 colors.</p>
<p><b>GIF WebSnap 256</b> creates GIF thumbnails that use a web adaptive        palette of up to 256 colors.<br />
<b>JPEG—Better Qualit</b>y creates JPEG thumbnails with        relatively higher quality and larger file sizes.<br />
<b>JPEG—Smaller File</b> creates JPEG thumbnails with relatively        lower quality and smaller file sizes. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose a format        for the large-size images from the Photo Format pop-up menu. A large-size        image of the specified format is created for each of your original images.        You may specify a format for the large-size images that differs from the        format you specified for the thumbnails.<br />
<b>Note</b>: The Create Web Photo Album command does not let you        use your original image files as the large-size images, because original        image formats other than GIF and JPEG might not display properly on all        browsers. Note that if your original images are JPEG files, the large-size        images generated may have larger file sizes or lower quality than the original        files. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose a Scale        percentage for the large-size images.<br />
Setting Scale to 100% creates large-size images the same size as the originals.        Note that the scale percentage is applied to all of the images; if your        original images aren’t all the same size, scaling them by the same        percentage may not produce the desired results. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select Create        Navigation Page for Each Photo to create an individual web page for each        source image, containing navigation links labeled Back, Home, and Next.<br />
If you select this option, the thumbnails link to the navigation pages.        If you don’t select this option, the thumbnails link directly to the        large-size images. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK to        create the HTML and image files for the web photo album.<br />
Fireworks launches (if it’s not already running) and creates the thumbnails        and large-size images. This may take several minutes if you’ve included        a large number of image files. When the processing is complete, Dreamweaver        becomes active again, and creates the page containing the thumbnails.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When a dialog        appears that says “Album Created,” click OK. You may have to        wait a few seconds for your photo album page to appear. The thumbnails are        shown in alphabetical order by filename.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/nature.gif" height="358" width="421" /></font></li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:      </b>Clicking the Cancel button in the Dreamweaver dialog box after processing      has begun does not stop the process of creating the photo album; it merely      prevents Dreamweaver from displaying the main photo album page. </font></p>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Editing    a Flash movie from Dreamweaver </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    cannot directly edit a SWF file, if you want to make changes to an exported    SWF, select the Flash movie placeholder in the Dreamweaver document, and in    the Property inspector click Edit. Edit launches Flash and if the path to the    source document (FLA) is available, also launches the FLA file. When the edits    are complete, Flash saves the changes in the FLA source document and re-exports    the SWF movie file. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="toeditflash"></a>To    launch and edit a Flash movie inserted from Dreamweaver: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Dreamweaver,        choose Window &gt; Properties to open the Property inspector, if it isn’t        already open.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Dreamweaver        document, do one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click            the Flash movie placeholder to select it; then in the Property inspector            click Edit.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/flash.gif" height="190" width="399" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Hold down            Control and double-click the movie placeholder for the movie you want            to edit.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Right-click            (Windows) or Control-click (Macintosh) the desired movie, and choose            Edit With Flash from the context menu.<br />
Dreamweaver launches Flash, and opens the FLA file for you to edit or            prompts you to open it if it cannot locate the FLA file.</font></li>
</ul>
</li>
</ol>
<ul>
<li>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:</b>          If the FLA file or SWF file is locked, Dreamweaver prompts you to check          the file out, cancel the request, or view the file.</font></p>
</li>
</ul>
</div>
<ol>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In        Flash, edit the movie. The Document window indicates that you are modifying        a movie from Dreamweaver.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/flashmx.gif" height="391" width="440" /> </font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When        you are finished making edits, click Done.<br />
Clicking Done saves changes to the source FLA file, and updates the SWF        file. </font></div>
</li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Inserting    and playing media objects </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can insert a Flash movie or object, QuickTime or Shockwave movie, Java applet,    ActiveX control, or other audio or video objects in a Dreamweaver document.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    insert a media object in a page: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Place the        insertion point in the Document window where you want to insert the object,        then do one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media, then click the button for the type of object            you want to insert, or drag it to the Document window.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/insertmenu.gif" height="41" width="400" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            the appropriate object from the Insert &gt; Media or Insert &gt; Interactive            Images submenu.<br />
In most cases, a dialog box appears letting you select a source file            and specify certain parameters for the media object. </font></li>
</ul>
</li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Launching    an external editor for media files </b></font></p>
<div align="justify">
<ol>
<blockquote>
<blockquote></blockquote>
</blockquote>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You      can double-click most files in the Site panel to edit them directly. If the      file is an HTML file, it opens in Dreamweaver. If it’s another kind      of file, such as an image file, it opens in an appropriate external editor,      such as Macromedia Fireworks. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Each      file type that Dreamweaver doesn’t handle directly can be associated      with one or more external editors found on your system. The editor that launches      when you double-click the file in the Site panel is called the primary editor.      You can set which editor is associated with a file type in File Types/Editors      preferences. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If      more than one editor is associated with the file type, you can launch a secondary      editor for a particular file. Right-click (Windows) or Control-click (Macintosh)      the filename in the Site panel, and choose an editor from the Open With submenu      of the context menu. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To      explicitly specify which external editors should be launched for a given file      type, choose Edit &gt; Preferences and select File Types/Editors from the      Category list. Filename extensions, such as .gif, .wav, and .mpg, are listed      on the left under Extensions. Associated editors for a selected extension      are listed on the right under Editors. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You      can also browse to find an external editor to edit your file. Right-click      (Windows) or Control-click (Macintosh) the file in the Design view of the      Document window, and choose Edit With &gt; Browse or select the file and choose      &gt; Edit &gt; Edit with External Editor. </font></p>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    add a file type to the list of extensions in File Types/Editors preferences:    </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button above the Extensions list.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter a file        type extension (including the period at the beginning of the extension),        or several related extensions separated by spaces.<br />
For example, you might enter .css, .png .jpg. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    add an editor for a given file type: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        file type extension in the Extensions list.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button above the Editors list.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the dialog        box that appears, choose an application to add to the Editors list.<br />
For example, choose the application icon for Excel to add that application        to your Editors list. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    remove a file type from the list: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        file type in the Extensions list.<br />
<b>Note</b>: You can’t undo after removing a file type,        so be sure that you want to remove it. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        minus (-) button above the Extensions list.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    make an editor the primary editor for a file type: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        file type.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        editor (or add it if it isn’t on the list).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Make        Primary.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    dissociate one editor from a file type: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        file type in the Extensions list.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        editor in the Editors list.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        minus (-) button above the Editors list.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="insertingflash"></a>Inserting    a Flash button object </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    Flash button object is an updateable button that is based on a Flash template.    You can customize a Flash button object, adding text, background color, and    links to other files. Flash buttons can be inserted while working in Design    view or in Code view. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note</b>:    You must save your document before inserting a Flash button or text object.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    use the Insert Flash Button dialog box to select from a set of designed Flash    buttons. You can view an example of the button in the Sample field. Click the    sample to see how it functions in the browser. While you are defining the Flash    button (for example, changing text or font choices), the Sample field does not    automatically update to reflect the changes. These changes will appear when    you close the dialog box and view the button in Design view. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    insert a Flash button object: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, place the insertion point where you want to insert the Flash button.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To open the        Insert Flash Object dialog box, do one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media and then click the Flash Button icon.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/flashbutton.gif" height="25" width="25" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media and then drag the Flash Button icon to the            Document window, or to the Code view window if you are working in the            code. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; Interactive Images &gt; Flash Button.<br />
The Insert Flash Button dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/flashbuttonimage.gif" height="397" width="400" /> </font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        button style you want from the Style list.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Button        Text field (optional), type the text you want to appear.<br />
This field only accepts changes if the selected button has a {Button Text}        parameter defined. This is shown in the Sample field. The text you type        in replaces the {Button Text} when you preview the file. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Font        pop-up menu, select the font you want to use.<br />
If the default font for a button is not available on your system, select        another font from the pop-up menu. You will not see the font you selected        in the Sample field, but you can click Apply to insert the button in the        page to see what the text will look like.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Size        field, enter a numeric value for the font size. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Link        field (optional), enter a document-relative or absolute link for the button.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Target        field (optional), specify the location in which the linked document will        open. You can select a frame or window option in the pop-up menu. Frame        names are listed only if the Flash object is being edited while in a frameset.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Bg        Color field (optional), set the background color for the Flash movie. Use        the color picker or type in a web hexadecimal value (such as #FFFFFF).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Save        As field, enter a filename to save the new SWF file.<br />
You can use the default filename (for example, button1.swf), or type in        a new name. If the file contains a document-relative link, you must save        the file to the same directory as the current HTML document to maintain        document-relative links. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Get        More Styles to go the Macromedia Exchange site and download more button        styles. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Apply        or OK to insert the Flash button in the Document window.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Modifying    a Flash button object </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can modify the properties and content of a Flash button object. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    modify a Flash button object: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, click the Flash button object to select it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Property        inspector, if it is not already open.<br />
The Property inspector displays the Flash button properties. You can use        the Property inspector to modify the button’s HTML attributes, such        as width, height, and Bg color. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To make changes        to content, display the Insert Flash Button dialog box using one of the        following methods:<br />
Double-click the Flash button object.<br />
Click Edit in the Property inspector.<br />
Right-click (Windows) or Control-click (Macintosh) and choose Edit from        the context menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Insert        Flash Button dialog box, make your edits in the fields </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Playing    a Flash button object in the document </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can preview a Flash button in the Dreamweaver Document window. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    see the Flash button object play in the Document window: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">While in Design        view, in the document, select the Flash button object.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, click Play.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Stop        to end the preview.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note</b>:    You can’t edit the Flash button object while it is playing. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">It’s    also a good idea to preview your document in the browser to see exactly how    the Flash button looks. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Inserting    a Flash text object </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    Flash text object lets you create and insert a Flash movie that contains just    text. This allows you to create a small, vector-graphic movie with the designer    fonts and text of your choice. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    insert a Flash text object: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, place the insertion point where you want to insert the Flash text.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To open the        Insert Flash Text dialog box, do one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media and then click the Flash Text icon.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/flashtext.gif" height="25" width="25" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media and then drag the Flash Text icon to the Document            window (or to the Code view window if you are working in the code).            </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; Interactive Images &gt; Flash Text.<br />
The Insert Flash Text dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/falshtextimage.gif" height="366" width="400" /> </font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a font        from the Font pop-up menu.<br />
This menu lists all TrueType fonts currently loaded on your system. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter a font        size in the Size field; these are point sizes.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Specify style        attributes, like bold or italic, and text alignment by clicking the appropriate        style buttons.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Color        field, set the color of the text by using the color picker or entering a        web hexadecimal value (such as #FFFFFF).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Rollover        Color field, set the color that appears when the pointer rolls over the        Flash text object. Use the color picker or enter a web hexadecimal value        (such as #FFFFFF).<br />
Enter the text you want in the Text field.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To see the        font style displayed in the Text field, select Show Font. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you want        to associate a link with the Flash text object, enter a document-relative        or absolute link in the Link field.<br />
Site-relative links are not accepted because browsers don’t recognize        them within Flash movies. If you use a document-relative link, make sure        to save the SWF file to the same directory as the HTML file. (Browsers vary        in their interpretation of document-relative links and saving to the same        directory ensures that the links will work correctly.) </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you entered        a link, you can specify a target frame or target window for that link to        go to in the Target field.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Bg        Color field, choose a background color for the text. Use the color picker        or enter a web hexadecimal value (such as #FFFFFF).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Save        As field, enter a name for the file.<br />
You can use the default filename (for example, tex1.swf), or type in a new        name. If the file contains a document-relative link, you must save the file        to the same directory as the current HTML document to maintain document-relative        links. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Apply        or OK to insert the Flash text in the Document window.<br />
If you click Apply, the dialog box remains open, and you can preview the        text in your document. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="insertingflashmovie"></a>Inserting    Flash movies </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When    you insert a Flash movie into a document, Dreamweaver uses both the object tag    (defined by Microsoft Internet Explorer for ActiveX controls) and the embed    tag (defined by Netscape Navigator) to get the best results in all browsers.    When you make changes in the Property inspector for the movie, Dreamweaver maps    your entries to the appropriate parameters for both the object and embed tags.    </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    insert a Flash movie: </b> </font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Design        view of the Document window, place the insertion point where you want to        insert the movie, then do one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media and then click the Insert Flash icon.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/flashmovie.gif" height="25" width="25" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media and then drag the Insert Flash icon to the            Document window.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; Media &gt; Flash.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            dialog box that appears, select a Flash movie file (.swf). </font></li>
</ul>
</li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    preview a Flash movie in the Document window: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, click the Flash placeholder to select the Flash movie you want to        preview.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, click the Play button. Click Stop to end the preview. You can        also preview the Flash movie in a browser by pressing F12. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="addingvideo"></a>Adding    video </b></p>
<p>You can add video to your web page in different ways and using different formats.    Video can be downloaded to the user or it can be streamed so that it plays while    it is downloading. The most common streaming formats available on the web for    the transmission of video files are RealMedia, QuickTime, and Windows Media.    You must download a helper application to view these formats. With these formats,    you can stream audio and video simultaneously. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    you’d like to include a short clip that can be downloaded rather than    streamed, you can link to the clip or embed it in your page. These clips are    often in the AVI or MPEG file format. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can use Director to create Shockwave movies or Flash to create interactive,    low-bandwidth, multimedia presentations for the web. With Flash, file size is    surprisingly small, and the technology works across many platforms. (Of course,    users must first download the free player plug-in before they can view these    files.) </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Adding    sound to a page </b></p>
<p>There are several different types of sound files and formats, and several different    ways to add sound to a web page. Some factors to consider before deciding on    a format and method for adding sound are its purpose, your audience, file size,    sound quality, and differences in browsers. </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Note:    Sound files are handled very differently and inconsistently by different browsers.    You may want to add a sound file to a Flash movie, then embed the SWF file to    improve consistency. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>About    audio file formats </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    following list describes the more common audio file formats along with some    of the advantages and disadvantages of each for web design. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>.midi    or .mid (Musical Instrument Digital Interface)</b> format is for instrumental    music. MIDI files are supported by many browsers and don’t require a plug-in.    Although their sound quality is very good, it can vary depending on a visitor’s    sound card. A small MIDI file can provide a long sound clip. MIDI files cannot    be recorded and must be synthesized on a computer with special hardware and    software.<br />
<b>.wav (Waveform Extension)</b> format files have good sound quality,    are supported by many browsers, and don’t require a plug-in. You can record    your own WAV files from a CD, tape, microphone, and so on. However, the large    file size severely limits the length of sound clips that you can use on your    web pages.<br />
</font></div>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>.aif    (Audio Interchange File Format, or AIFF)</b> format, like WAV format, has    good sound quality, can be played by most browsers, and doesn’t require    a plug-in; you can also record AIFF files from a CD, tape, microphone, and so    on. However, the large file size severely limits the length of sound clips that    you can use on your web pages. </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>.mp3    (Motion Picture Experts Group Audio, or MPEG-Audio Layer-3)</b> format    is a compressed format that makes sound files substantially smaller. The sound    quality is very good: if an MP3 file is recorded and compressed properly, its    quality can rival that of a CD. New technology lets you “stream”    the file so that a visitor doesn’t have to wait for the entire file to    download before hearing it. However, the file size is larger than a Real Audio    file, so a whole song could still take quite a while to download over a normal    phone line connection. To play MP3 files, visitors must download and install    a helper application or plug-in such as QuickTime, Windows Media Player or RealPlayer.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">.ra,    .ram, .rpm, or Real Audio format has a very high degree of compression with    smaller file sizes than MP3. Whole song files can be downloaded in a reasonable    amount of time. Because the files can be “streamed” from a normal    web server, visitors can begin listening to the sound before the file has completely    downloaded. The sound quality is poorer than that of MP3 files, but new players    and encoders have improved quality considerably. Visitors must download and    install the RealPlayer helper application or plug-in to play these files. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Linking    to an audio file </b><br />
Linking to an audio file is a simple and effective way to add sound to a web    page. This method of incorporating sound files lets visitors choose whether    they want to listen to the file, and makes the file available to the widest    audience. (Some browsers may not support embedded sound files.) </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a link to an audio file: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        text or image you want to use as the link to the audio file.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, click the folder icon to browse for the audio file, or type the        file’s path and name in the Link field.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="embeddingasoundfile"></a>Embedding    a sound file </b></p>
<p>Embedding audio incorporates the sound player directly into the page, but the    sound only plays if visitors to your site have the appropriate plug-in for the    chosen sound file. Embed files if you want to use the sound as background music,    or if you want more control over the sound presentation itself. For example,    you can set the volume, the way the player looks on the page, and the beginning    and ending points of the sound file. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    embed an audio file: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In Design        view, place the insertion point where you want to embed the file and then        do one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media then click the Plugin icon.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media then drag the Plugin icon to the Document window,            or to the Code view window if you are working in the code.<br />
</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; Media &gt; Plugin.</font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, click the folder icon to browse for the audio file, or type the        file’s path and name in the Link field.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter the        width and height by entering the values in the appropriate fields or by        resizing the plug-in placeholder in the Document window.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">These    values determine the size at which the audio controls are displayed in the browser.    For example, try a width of 144 pixels and a height of 60 pixels to see how    the audio player appears in both Navigator and Internet Explorer. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="insertingnetscape"></a>Inserting    Netscape Navigator plug-in content </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Plug-ins    enhance Netscape Navigator, providing ways to view media content in a wide variety    of formats. Plug-ins are the means by which content files are played and displayed    on your website. For example, typical plug-ins include RealPlayer and QuickTime,    while some content files themselves include MP3s and QuickTime movies. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">After    you create content for a Navigator plug-in, you can use Dreamweaver to insert    that content into an HTML document. Dreamweaver uses the embed tag to mark the    reference to the content file. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    insert Navigator plug-in content: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Design        view of the Document window, place the insertion point where you want to        insert the content, then do one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media and then click the Plugin icon.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; Media &gt; Plugin. </font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the dialog        box that appears, select a content file for a Navigator plug-in. </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select            one of the media elements you have inserted, and choose View &gt; Plugins            &gt; Play or click the Play button in the Property inspector.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            View &gt; Plugins &gt; Play All to play all of the media elements on            the selected page that rely on plug-ins.</font></li>
</ul>
</li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:</b>    Play All only applies to the current document; it does not apply to other documents    in a frameset, for example.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    stop playing plug-in content: </b><br />
</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select    a media element and choose View &gt; Plugins &gt; Stop, or click the Stop button    in the Property inspector. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can also choose View &gt; Plugins &gt; Stop All to stop all plug-in content    from playing. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Troubleshooting    Navigator plug-ins </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    you have followed the steps to play plug-in content in the Document window,    but some of the plug-in content does not play, try the following: </font></p>
<div align="justify">
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Make sure        the associated plug-in is installed on your computer, and that the content        is compatible with the version of the plug-in you have.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the file        Configuration/Plugins/UnsupportedPlugins.txt in a text editor and look to        see if the problematic plug-in is listed. This file keeps track of plug-ins        that cause problems in Dreamweaver and are therefore unsupported. (If you        experience problems with a particular plug-in, consider adding it to this        file.)</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        you have enough memory (and on the Macintosh, check that enough memory is        allocated to Dreamweaver). Some plug-ins require an additional 2 to 5 MB        of memory to run.</font></li>
</ul>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="insertinganactivexcontrol"></a>Inserting    an ActiveX control </b></p>
<p>ActiveX controls (formerly known as OLE controls) are reusable components, somewhat    like miniature applications, that can act like browser plug-ins. They run in    Internet Explorer with Windows, but they don’t run on the Macintosh or    in Netscape Navigator. The ActiveX object in Dreamweaver lets you supply attributes    and parameters for an ActiveX control in your visitor’s browser. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Dreamweaver    uses the object tag to mark the place on the page where the ActiveX control    will appear, and to provide parameters for the ActiveX control. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    insert ActiveX control content: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, place the insertion point where you want to insert the content and        do one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media and then click the ActiveX icon.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/ax.gif" height="25" width="25" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media and then drag the ActiveX icon to the Document            window (or to the Code view window if you are working in the code).            </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; Media &gt; ActiveX.<br />
An icon marks where the ActiveX control will appear on the page in Internet            Explorer. </font></li>
</ul>
</li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Inserting    a Java applet</b></font></p>
<div align="justify"></div>
<blockquote>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Java      is a programming language that allows the development of lightweight applications      (applets) that can be embedded in web pages. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">After      you create a Java applet, you can insert it into an HTML document using Dreamweaver.      Dreamweaver uses the applet tag to mark the reference to the applet file.      </font></p>
</blockquote>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="javaapplet"></a>To    insert a Java applet:</b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window, place the insertion point where you want to insert the applet, then        do one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media and then click the Applet icon.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/javaaplet.gif" height="25" width="25" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Insert bar, select Media and then drag the Applet icon to the Document            window (or to the Code view window if you are working in the code).            </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; Media &gt; Applet. You can also drag the Flash button icon            over to the Document window.</font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the dialog        box that appears, select a file containing a Java applet.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="usingjavascript"></a>Using    JavaScript Behaviors </b></p>
<p>Dreamweaver behaviors place JavaScript code in documents to allow visitors to    interact with a web page to change the page in various ways, or to cause certain    tasks to be performed. A behavior is a combination of an event with an action    triggered by that event. In the Behaviors panel, you add a behavior to a page    by specifying an action and then specifying the event that triggers that action.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:    </b>Behavior code is client-side JavaScript code; that is, it runs in browsers,    not on servers.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Events    are, effectively, messages generated by browsers indicating that a visitor to    your page has done something. For example, when a visitor moves the pointer    over a link, the browser generates an onMouseOver event for that link; the browser    then checks to see whether there’s some JavaScript code (specified in    the page being viewed) that the browser is supposed to call when that event    is generated for that link. Different events are defined for different page    elements; for example, in most browsers onMouseOver and onClick are events associated    with links, whereas onLoad is an event associated with images and with the body    section of the document. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>About    behaviors and text </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can’t attach a behavior to plain text. Tags like p and span don’t    generate events in browsers, so there’s no way to trigger an action from    those tags. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">However,    you can attach a behavior to a link. Therefore, to attach a behavior to text,    the easiest approach is to add a null link (that doesn’t point to anything)    to the text, then attach the behavior to the link. Note that if you do this,    your text will appear as a link. You can change the link color and remove the    underlining if you really don’t want it to look like a link, though site    visitors may then be unaware that there’s a reason to click that text.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    attach a behavior to the selected text: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, enter javascript:; in the Link field. Be certain to include both        the colon and the semicolon.<br />
<b>Note:</b> You can instead use a number sign (#) in the Link        field if you want. The problem with using a number sign is that when a visitor        clicks the link, some browsers may jump to the top of the page. Clicking        the JavaScript null link has no effect at all on the page, so the JavaScript        approach is generally preferable. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">With the text        still selected, open the Behaviors panel (Window &gt; Behaviors).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose an        action from the Actions pop-up menu, enter parameters for the action, and        choose an event to trigger the action. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    change the appearance of linked text to make it look like it isn’t a link:    </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Document        window’s Code view by choosing View &gt; Code.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Find the link.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the link’s        a href tag, insert this attribute: style=&#8221;text-decoration:none; color:black&#8221;.<br />
This attribute setting disables underlining and sets the color of the text        to black. (Of course, if the surrounding text is a different color, use        that color instead of black.)</font></li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Note      that this attribute is an inline CSS style. An inline style applied to a single      link overrides other CSS styles that apply to that link, but has no effect      outside of that link. To change the appearance of linked text everywhere on      a page or across your entire site, use CSS styles to create a new style for      links.</font></p>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Attaching    a behavior to a timeline </b></p>
<p>To trigger a behavior at a certain frame in a timeline (rather than having a    visitor’s interaction trigger it), place the behavior in the timeline.Only    one kind of event can trigger an action in a timeline: the animation reaching    a certain frame number (an onFrame7 event, for example). </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    behavior can affect any object on the page, not just objects in the timeline.    Preview the timeline in a browser to see the behavior working. You cannot preview    behaviors inside Dreamweaver. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    place a behavior in a timeline: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click in a        frame in the Behaviors channel in the Timelines panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use the Behaviors        panel to choose an action to perform at that frame.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    action appears in the Behaviors panel, with an event indicating the frame number    at which the action is triggered. A minus sign (–) appears in the Behaviors    channel of the timeline frame. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Changing    a behavior </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">After    attaching a behavior, you can change the event that triggers the action, add    or remove actions, and change parameters for actions. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    change a behavior: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object with a behavior attached.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Behaviors to open the Behaviors panel.<br />
Behaviors appear in the panel alphabetically by event. If there are several        actions for the same event, the actions appear in the order in which they        will execute. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose from        the following options: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To edit            an action’s parameters, double-click the behavior name, or select            it and press Enter (Windows) or Return (Macintosh); then change parameters            in the dialog box and click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To change            the order of actions for a given event, select an action and click the            up or down arrow button.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To delete            a behavior, select it and click the minus (–) button or press            Delete.<br />
</font></li>
</ul>
</li>
</ol>
<ul>
<p align="justify">&nbsp;</p>
</ul>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="updatingabehavior"></a>Updating    a behavior </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    your pages contain behaviors created with Dreamweaver 1 or Dreamweaver 2, those    behaviors are not updated automatically when you open the pages in the current    version of Dreamweaver. However, when you update one occurrence of a behavior    in a page (by following the procedure below), all other occurrences of that    behavior in that page are also updated. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    update a behavior in a page: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        element that has the behavior attached to it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Behaviors        panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Double-click        the behavior.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK in        the behavior’s dialog box.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">All    occurrences of that behavior in that page are updated. </font></p>
<p align="justify"><a name="calljavascript"></a><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Call    JavaScript</p>
<p></b>The Call JavaScript action lets you use the Behaviors panel to specify    that a custom function or line of JavaScript code should be executed when an    event occurs. (You can write the JavaScript yourself, or you can use code provided    by various freely available JavaScript libraries on the web.) </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Call JavaScript action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object and open the Behaviors panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Call JavaScript from the Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Type the exact        JavaScript to be executed, or type the name of a function.<br />
For example, to create a Back button, you might type if (history.length        &gt; 0){history.back()}. If you have encapsulated your code in a function,        type only the function name (for example, hogback()). </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want.<br />
If it isn’t, choose another event from the pop-up menu. If the events        you want are not listed, change the target browser in the Show Events For        pop-up menu. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Change    Property </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use    the Change Property action to change the value of one of an object’s properties    (for example, the background color of a layer or the action of a form). The    properties you can affect are determined by the browser; many more properties    can be changed by this behavior in Internet Explorer 4.0 than in IE 3.0 or Navigator    3.0 or 4.0. For example, you can set the background color of a layer dynamically.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:</b>    Use this action only if you are very familiar with HTML and JavaScript.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Change Property action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object and open the Behaviors panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Change Property from the Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">From the Type        of Object pop-up menu, choose the type of object whose property you want        to change.<br />
The Named Object pop-up menu now lists all the named objects of the type        you chose. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose an        object from the Named Object pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose a property        from the Property pop-up menu, or enter the name of the property in the        text field.<br />
To see the properties that can be changed in each browser, choose different        browsers or browser versions from the browser pop-up menu. If you are typing        a property name, be sure to use the exact JavaScript name of the property        (and remember that JavaScript properties are case-sensitive). </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter the        new value for the property in the New Value field, and click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want. (When the event occurs, the action        will execute and the property will change.)<br />
If it isn’t, choose another event from the pop-up menu. If the events        you want are not listed, change the target browser in the Show Events For        pop-up menu.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="checkbrowser"></a>Check    Browser </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use    the Check Browser action to send visitors to different pages depending on their    browser brands and versions. For example, you might want visitors to go to one    page if they have Navigator 4.0 or later, to go to another page if they have    Internet Explorer 4.0 or later, and to stay on the current page if they have    any other kind of browser. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">It’s    useful to attach this behavior to the body tag of a page that is compatible    with practically any browser (and that does not use any other JavaScript); this    way, visitors who come to the page with JavaScript turned off will still see    something. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Another    option is to attach this behavior to a null link (such as &lt;a href=&#8221;javascript:;&#8221;&gt;)    and have the action determine the link’s destination based on the visitor’s    browser brand and version.<br />
</font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Check Browser action: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object and open the Behaviors panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Check Browser from the Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Determine        how you want to separate your visitors: by browser brand, by browser version,        or both.<br />
For example, do you want everyone with a 4.0 browser to see one page, and        all others to see a different page? Or perhaps you want Netscape Navigator        users to see one page and Internet Explorer users to see another. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Specify a        version of Netscape Navigator.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the adjacent        pop-up menus, choose options for what to do if the browser is the Netscape        Navigator version you specified or later and what to do otherwise.<br />
The options are Go to URL, Go to Alt URL, and Stay on This Page. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Specify a        version of Internet Explorer.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the adjacent        pop-up menus, choose options for what to do if the browser is the Internet        Explorer version you specified or later and what to do otherwise.<br />
The options are Go to URL, Go to Alt URL, and Stay on This Page. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose an        option from the Other Browsers pop-up menu to specify what to do if the        browser is neither Navigator nor Internet Explorer. (For example, the visitor        may be using a text-based browser like Lynx.)<br />
Stay on This Page is the best option for browsers other than Navigator and        IE because most do not support JavaScript—and if they cannot read        this behavior, they will stay on the page anyway. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter the        paths and filenames of the URL and the alternate URL in the text fields        at the bottom of the dialog box. If you enter a remote URL, you must enter        the http:// prefix in addition to the www address.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want.<br />
If it isn’t, choose another event from the pop-up menu. If the events        you want are not listed, change the target browser in the Show Events For        pop-up menu. Remember that the purpose of this behavior is to check for        different browser versions, so it’s best to choose an event that works        on 3.0 and later browsers. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="checkplugin"></a>Check    Plugin</b></p>
<p>Use the Check Plugin action to send visitors to different pages depending on    whether they have the specified plug-in installed. For example, you might want    visitors to go to one page if they have Shockwave and another page if they do    not. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:</b>    You cannot detect specific plug-ins in Internet Explorer using JavaScript. However,    selecting Flash or Director will add the appropriate VBScript code to your page    to detect those plug-ins in IE on Windows. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Check Plugin action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object and open the Behaviors panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Check Plugin from the Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose a plug-in        from the Plugin pop-up menu, or click Enter and type the exact name of the        plug-in in the adjacent field.<br />
You must use the exact name of the plug-in as specified in bold on the About        Plug-ins page in Navigator. (In Windows, choose Navigator’s Help &gt;        About Plug-ins command; on the Macintosh, choose About Plug-ins from the        Apple menu.) </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the If        Found, Go To URL field, specify a URL for visitors who have the plug-in.<br />
If you specify a remote URL, you must include the http:// prefix in the        address</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To make visitors        with the plug-in stay on the same page, leave this field blank. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Otherwise,        Go To URL field, specify an alternative URL for visitors who don’t        have the plug-in.<br />
To make visitors without the plug-in stay on the same page, leave this field        blank. </font></li>
<li></li>
</ol>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Plug-in      detection is not possible in Internet Explorer on the Macintosh, and most      plug-ins cannot be detected in Internet Explorer on Windows. By default, when      detection is impossible, the visitor is sent to the URL listed in the Otherwise      field. To instead send the visitor to the first (If Found) URL, select the      Always go to first URL if detection is not possible option. When selected,      this option effectively means “assume that the visitor has the plug-in,      unless the browser explicitly indicates that the plug-in is not present.”<br />
In general, if the plug-in content is integral to your page, select the “Always      go to first URL if detection is not possible” option; visitors without      the plug-in will often be prompted by the browser to download the plug-in.      If the plug-in content is not essential to your page, leave this option unselected.      </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">This      option applies only to Internet Explorer; Navigator can always detect plug-ins.      </font></p>
</div>
<ol>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        OK.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check        that the default event is the one you want.<br />
If it isn’t, choose another event from the pop-up menu. If the events        you want are not listed, change the target browser in the Show Events For        pop-up menu. </font></div>
</li>
<p align="justify">&nbsp;</p>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Control    Shockwave or Flash</b> </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use    the Control Shockwave or Flash action to play, stop, rewind, or go to a frame    in a Macromedia Shockwave or Macromedia Flash movie. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Control Shockwave or Flash action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Insert        &gt; Media &gt; Shockwave or Insert &gt; Media &gt; Flash to insert a Shockwave        or Flash movie, respectively.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Properties and enter a name for the movie in the upper leftmost field        (next to the Shockwave or Flash icon). You must name the movie to control        it with the Control Shockwave or Flash action.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        item you want to use to control the Shockwave or Flash movie. For example,        if you have an image of a “Play” button that will be used to        make the movie play, select that image.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Behaviors        panel (Window &gt; Behaviors).</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Control Shockwave or Flash from the Actions pop-up        menu.<br />
A parameters dialog box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose a movie        from the Movie pop-up menu.<br />
Dreamweaver automatically lists the names of all Shockwave and Flash movies        in the current document. (Specifically, Dreamweaver lists movies with filenames        ending in .dcr, .dir, .swf, or .spl that are in object or embed tags.) </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose to        play, stop, rewind, or go to a frame in the movie. The Play option plays        the movie starting from the frame where the action occurs.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want.<br />
If it isn’t, choose another event from the pop-up menu. If the events        you want are not listed, change the target browser in the Show Events For        submenu of the Events pop-up menu. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="draglayer"></a>Drag    Layer </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    Drag Layer action lets the visitor drag a layer. Use this action to create puzzles,    slider controls, and other movable interface elements. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can specify in which direction the visitor can drag the layer (horizontally,    vertically, or in any direction), a target to which the visitor should drag    the layer, whether to snap the layer to the target if the layer is within a    certain number of pixels of the target, what to do when the layer hits the target,    and more. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Because    the Drag Layer action must be called before the layer can be dragged by the    visitor, make sure the event that triggers the action occurs before the visitor    attempts to drag the layer. It’s best to attach Drag Layer to the body    object (with the onLoad event), though you can also attach it to a link that    fills the entire layer (such as a link around an image) using the onMouseOver    event. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Drag Layer action: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Insert        &gt; Layer or click the Draw Layer button on the Insert bar and draw a layer        in the Document window’s Design view.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        body tag by clicking &lt;body&gt; in the tag selector at the bottom of the        Document window.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Behaviors        panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Drag Layer from the Actions pop-up menu.<br />
If Drag Layer is unavailable, you probably have a layer selected. Because        layers do not accept events in both 4.0 browsers, you must select a different        object—such as the body tag or a link (a tag)—or change the        target browser to IE 4.0 in the Show Events For pop-up menu. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Layer        pop-up menu, select the layer that you want to make draggable.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose either        Constrained or Unconstrained from the Movement pop-up menu.<br />
Unconstrained movement is appropriate for puzzles and other drag-and-drop        games. For slider controls and moveable scenery such as file drawers, curtains,        and mini-blinds, choose constrained movement.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">For constrained        movement, enter values (in pixels) in the Up, Down, Left, and Right fields.<br />
Values are relative to the starting position of the layer. To constrain        movement within a rectangular region, enter positive values in all four        fields. To allow only vertical movement, enter positive values for Up and        Down and 0 for Left and Right. To allow only horizontal movement, enter        positive values for Left and Right and 0 for Up and Down. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter values        (in pixels) for the drop target in the Left and Top fields.<br />
The drop target is the spot to which you want the visitor to drag the layer.        A layer is considered to have reached the drop target when its left and        top coordinates match the values you enter in the Left and Top fields. Values        are relative to the top left corner of the browser window. Click Get Current        Position to automatically fill the fields with the current position of the        layer. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter a value        (in pixels) in the Snap if Within field to determine how close the visitor        must get to the drop target before the layer snaps to the target.<br />
Larger values make it easier for the visitor to find the drop target. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">For simple        puzzles and scenery manipulation, you can stop here. To define the drag        handle for the layer, track the movement of the layer while it is being        dragged, and trigger an action when the layer is dropped, click the Advanced        tab.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To specify        that the visitor must click a particular area of the layer to drag the layer,        choose Area Within Layer from the Drag Handle pop-up menu; then enter the        left and top coordinates and the width and height of the drag handle.<br />
This option is useful when the image inside the layer has an element that        suggests dragging, such as a title bar or drawer handle. Do not set this        option if you want the visitor to be able to click anywhere in the layer        to drag it. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose any        While Dragging options that you want to use: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select            Bring Layer to Front if the layer should move to the front of the stacking            order while it is being dragged. If you select this option, use the            pop-up menu to choose whether to leave the layer in front or restore            it to its original position in the stacking order.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter            JavaScript code or a function name (for example, monitorLayer()) in            the Call JavaScript field to repeatedly execute the code or function            while the layer is being dragged. For example, you could write a function            that monitors the coordinates of the layer and displays hints such as            “you’re getting warmer” or “you’re nowhere            near the drop target” in a text field. </font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter JavaScript        code or a function name (for example, evaluateLayerPos()) in the second        Call JavaScript field to execute the code or function when the layer is        dropped. Select Only if Snapped if the JavaScript should be executed only        if the layer has reached the drop target.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want.<br />
If it isn’t, choose another event from the pop-up menu. If the events        you want are not listed, change the target browser in the Show Events For        pop-up menu. Remember that layers are not supported by 3.0 browsers. </font></li>
</ol>
</div>
<ol>
<p align="justify">&nbsp;</p>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="behavior"></a>Go    to URL<br />
</b>The Go to URL action opens a new page in the current window or in the    specified frame. This action is particularly useful for changing the contents    of two or more frames with one click. It can also be called in a timeline to    jump to a new page after a specified time interval. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Go To URL action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object and open the Behaviors panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Go to URL from the Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose a destination        for the URL from the Open In list.<br />
The Open In list automatically lists the names of all frames in the current        frameset as well as the main window. If there are no frames, the main window        is the only option<br />
</font><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:        </b>This action may produce unexpected results if any frame is named        top, blank, self, or parent. Browsers sometimes mistake these names for        reserved target names.</font></li>
</ol>
</div>
<ol start="4">
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        Browse to select a document to open, or enter the path and filename of the        document in the URL field.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Repeat        steps 3 and 4 to open additional documents in other frames.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        OK.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check        that the default event is the one you want.</font></div>
</li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    it isn’t, choose another event from the pop-up menu. If the events you    want are not listed, change the target browser in the Show Events For pop-up    menu. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Jump    Menu Go </b> </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    Jump Menu Go action is closely associated with the Jump Menu action; Jump Menu    Go lets you associate a Go button with a jump menu. (Before you use this action,    a jump menu must already exist in the document.) Clicking the Go button opens    the link that’s selected in the jump menu. A jump menu doesn’t normally    need a Go button; choosing an item from a jump menu generally causes a URL to    load without any need for further user action. But if the visitor chooses the    same item that’s already chosen in the jump menu, the jump doesn’t    occur. In general, that doesn’t matter, but if the jump menu appears in    a frame, and the jump menu items link to pages in other frames, a Go button    is often useful, to allow visitors to re-choose an item that’s already    selected in the jump menu. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    add a Jump Menu Go action: </b> </font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object to use as the Go button (generally a button image), and open the        Behaviors panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Jump Menu Go from the Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Choose        Jump Menu pop-up menu, choose a menu for the Go button to activate. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Open    Browser Window </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use    the Open Browser Window action to open a URL in a new window. You can specify    the properties of the new window, including its size, attributes (whether it    is resizable, has a menu bar, and so on), and name. For example, you can use    this behavior to open a larger image in a separate window when the visitor clicks    a thumbnail image; with this behavior, you can make the new window the exact    size of the image. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    you specify no attributes for the window, it opens at the size and with the    attributes of the window that launched it. Specifying any attribute for the    window automatically turns off all other attributes that are not explicitly    turned on. For example, if you set no attributes for the window, it might open    at 640 x 480 pixels and have a navigation bar, location toolbar, status bar,    and menu bar. If you explicitly set the width to 640 and the height to 480 and    set no other attributes, the window opens at 640 x 480 pixels and has no navigation    bar, no location toolbar, no status bar, no menu bar, no resize handles, and    no scroll bars. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Open Browser Window action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object and open the Behaviors panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Open Browser Window from the Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Browse        to select a file, or enter the URL you want to display.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Set any of        the following options:
<p><b>Window Width </b>specifies the width of the window in pixels.</p>
<p><b>Window Height </b>specifies the height of the window in pixels.</p>
<p><b>Navigation Toolbar </b>is the row of browser buttons that includes        Back, Forward, Home, and Reload.</p>
<p><b>Location Toolbar</b> is the row of browser options that includes        the location field.</p>
<p><b>Status Bar</b> is the area at the bottom of the browser window        in which messages (such as the load time remaining and the URLs associated        with links) appear.</p>
<p><b>Menu Bar</b> is the area of the browser window (Windows) or        the desktop (Macintosh) where menus such as File, Edit, View, Go, and Help        appear. You should explicitly set this option if you want visitors to be        able to navigate from the new window. If you do not set this option, the        user can only close or minimize the window (Windows) or close the window        or quit the application (Macintosh) from the new window. </font></li>
</ol>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Scrollbars    as Needed</b> specifies that scroll bars should appear if the content extends    beyond the visible area. If you do not explicitly set this option, scroll bars    do not appear. If the Resize Handles option is also turned off, visitors have    no easy way of seeing content that extends beyond the original size of the window.    (Though they may be able to make the window scroll by dragging off the edge    of the window.) </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Resize      Handles </b>specifies that the user should be able to resize the window,      either by dragging the lower right corner of the window or by clicking the      maximize button (Windows) or size box (Macintosh) in the upper right corner.      If this option is not explicitly set, the resize controls are unavailable      and the lower right corner is not draggable.</p>
<p><b>Window Name</b> is the name of the new window. You should name      the new window if you want to target it with links or control it with JavaScript.      This name cannot contain spaces or special characters. </font></div>
<ol>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        OK.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check        that the default event is the one you want.</font></div>
</li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    it isn’t, choose another event from the pop-up menu. If the events you    want are not listed, change the target browser in the Show Events For pop-up    menu. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Play    Sound </b> </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use    the Play Sound action to play a sound. For example, you might want to play a    sound effect whenever the mouse pointer rolls over a link, or you might want    to play a music clip when the page loads. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:    </b>Browsers may require some kind of additional audio support (such as    an audio plug-in) to play sounds. Therefore, different browsers with different    plug-ins often play sounds differently. It’s difficult to reliably predict    how visitors to your site will experience the sounds you provide.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Play Sound action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object and open the Behaviors panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Play Sound from the Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Browse        to select a sound file, or enter the path and filename in the Play Sound        field.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want.
<p>If it isn’t, choose another event from the pop-up menu. If the events        you want are not listed, change the target browser in the Show Events For        pop-up menu.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
<b>Popup Message </b></p>
<p>The Popup Message action displays a JavaScript alert with the message you specify.    Because JavaScript alerts have only one button (OK), use this action to provide    information rather than to present the user with a choice. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can embed any valid JavaScript function call, property, global variable, or    other expression in the text. To embed a JavaScript expression, place it inside    braces ({}). To display a brace, precede it with a backslash (\{).<br />
</font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Popup Message action:</b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> Select an        object and open the Behaviors panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Popup Message from the Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter your        message in the Message field.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    it isn’t, choose another event from the pop-up menu. If the events you    want are not listed, change the target browser in the Show Events For pop-up    menu. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Preload    Images </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    Preload Images action loads images that do not appear on the page right away    (such as those that will be swapped in with timelines, behaviors, or JavaScript)    into the browser cache. This prevents delays caused by downloading when it is    time for the images to appear. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:</b>    The Swap Image action automatically preloads all highlight images when you select    the Preload Images option in the Swap Image dialog box, so you do not need to    manually add Preload Images when using Swap Image.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Preload Images action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object and open the Behaviors panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Preload Images from the Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Browse        to select an image file to preload, or enter the path and filename of an        image in the Image Source File field.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button at the top of the dialog box to add the image to the Preload        Images list.<br />
<b>Note:</b> If you do not click the plus button before entering        the next image, the image you have just chosen will be replaced in the list        with the image you choose next. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Repeat steps        3 and 4 for all remaining images that you want to preload on the current        page.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To remove        an image from the Preload Images list, select the image in the list and        click the minus (–) button.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    it isn’t, choose another event from the pop-up menu. If the events you    want are not listed, change the target browser in the Show Events For pop-up    menu. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Set    Text of Layer </b> </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    Set Text of Layer action replaces the content and formatting of an existing    layer on a page with the content you specify. The content can include any valid    HTML source code. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Set    Text of Layer replaces the content and formatting of the layer, but retains    layer attributes, including color. Format the content by including HTML tags    in the New HTML field of the Set Text of Layer dialog box. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can embed any valid JavaScript function call, property, global variable, or    other expression in the text. To embed a JavaScript expression, place it inside    braces ({}). To display a brace, precede it with a backslash (\{ ). </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    attach a Set Text of Layer action: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object and open the Behaviors panel. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Set Text &gt; Set Text of Layer from the Actions        pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Set        Text of Layer dialog box, use the Layer pop-up menu to choose the target        layer.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter a message        in the New HTML field, then click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want. If it isn’t, choose another        event from the pop-up menu.
<p>If you don’t see the events you want, change the target browser in        the Show Events For pop-up menu. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Set    Text of Status Bar </b></p>
<p>The Set Text of Status Bar action shows a message in the status bar at the bottom    left of the browser window. For example, you can use this action to describe    the destination of a link in the status bar instead of showing the URL associated    with it. To see an example of a status message, roll your mouse over any of    the navigation buttons in Dreamweaver Help. Note, however, that visitors often    ignore or overlook messages in the status bar (and not all browsers provide    full support for setting the text of the status bar); if your message is important,    consider displaying it as a pop-up message or as the text of a layer. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can embed any valid JavaScript function call, property, global variable, or    other expression in the text. To embed a JavaScript expression, place it inside    braces ({}). To display a brace, precede it with a backslash (\{). </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Set Text of Status Bar action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object and open the Behaviors panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Set Text &gt; Set Text of Status Bar from the        Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Set        Text of Status Bar dialog box, type your message in the Message field.<br />
Keep the message concise. The browser truncates the message if it doesn’t        fit in the status bar. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
If it isn’t, choose another event from the pop-up menu. If the events    you want are not listed, change the target browser in the Show Events For pop-up    menu. </font></p>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Set    Text of Text Field </b></p>
<p>The Set Text of Text Field action replaces the content of a form’s text    field with the content you specify. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can embed any valid JavaScript function call, property, global variable, or    other expression in the text. To embed a JavaScript expression, place it inside    braces ({}). To display a brace, precede it with a backslash (\{). </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a named text field: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Insert        &gt; Form Objects &gt; Text Field.<br />
If Dreamweaver prompts you to add a form tag, click Yes. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, type a name for the text field. Make sure the name is unique        on the page (don’t use the same name for multiple elements on the        same page, even if they’re in different forms).</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Set Text of Text Field action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a text        field and open the Behaviors panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Set Text &gt; Set Text of Text Field from the        Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Set        Text of Text Field dialog box, choose the target text field from the Text        Field pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter text        in the New Text field, then click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want. If it isn’t, choose another        event from the pop-up menu. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    you don’t see the events you want, change the target browser in the Show    Events For pop-up menu. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Show-Hide    Layers </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
The Show-Hide Layers action shows, hides, or restores the default visibility    of one or more layers. This action is useful for showing information as the    user interacts with the page. For example, as the user rolls the mouse pointer    over an image of a plant, you could show a layer that gives details about the    plant’s growing season and region, how much sun it needs, how large it    can grow, and so on. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Show-Hide    Layers is also useful for creating a preload layer—that is, a large layer    that obscures the contents of the page at first and then disappears when all    the page components have finished loading. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Show-Hide Layers action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Insert        &gt; Layer or click the Layer button in the Insert bar, and draw a layer        in the Document window.<br />
Repeat this step to create additional layers. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click in the        Document window to deselect the layer, then open the Behavior panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Show-Hide Layers from the Actions pop-up menu.<br />
If Show-Hide Layers is unavailable, you probably have a layer selected.        Because layers do not accept events in both 4.0 browsers, you must select        a different object—such as the body tag or a link (a tag)—or        change the target browser to IE 4.0 in the Show Events For pop-up menu.        </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">From the Named        Layers list, select the layer whose visibility you want to change.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Show        to show the layer, Hide to hide the layer, or Default to restore the layer’s        default visibility.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Repeat steps        4 and 5 for all remaining layers whose visibility you want to change at        this time. (You can change the visibility of multiple layers with a single        behavior.)</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    it isn’t, choose another event from the pop-up menu. If the events you    want are not listed, change the target browser in the Show Events For pop-up    menu. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When    viewed in a Netscape Navigator browser window, layers may shrink to fit the    content. To keep this from happening, add text or images to layers, or set layer    clip values. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a preload layer:</b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        Draw Layer button in the Common category of the Insert bar and draw a large        layer in the Document window’s Design view.<br />
Be sure the layer covers all the content on the page. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Layers        panel, drag the layer name to the top of the list of layers to specify that        the layer should be at the front of the stacking order.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        layer if it’s not selected, and name it loading, using the leftmost        field in the layer Property inspector.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">With the layer        still selected, set the background color of the layer to the same color        as the page background in the Property inspector.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click inside        the layer (which should now be obscuring the rest of the page contents)        and type a message, if desired.<br />
For example, “Please wait while the page loads” or “Loading&#8230;”        are messages that tell visitors what is happening so that they know the        page contains content. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        &lt;body&gt; tag in the tag selector in the bottom left corner of the Document        window.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Behaviors        panel, choose Show-Hide Layers from the Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        layer called loading from the Named Layers list.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Hide.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Make sure        that the event listed next to the Show-Hide Layers action in the behaviors        list is onLoad. (If it isn’t, select the event and click the downward-pointing        triangle that appears between the event and the action. Choose onLoad from        the list of events in the pop-up menu.)</font></li>
</ol>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Show Pop-Up    Menu</b></p>
<p>You use the Show Pop-Up Menu behavior to create or edit a Dreamweaver pop-up    menu or to open and modify a Fireworks pop-up menu you’ve inserted in    a Dreamweaver document. </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    set options in the Show Pop-Up Menu dialog box to create a horizontal or vertical    pop-up menu. You can use this dialog box to set or modify the color, text, and    position of a pop-up menu. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Show Pop-up Menu action: </b></p>
<p></font></p>
<ol>
<li> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object to attach the behavior to and open the Behaviors panel (Shift+F3).</font></li>
<li> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Show Pop-Up Menu from the Actions pop-up menu.</font></li>
<li> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Show        Pop-Up Menu dialog box that appears, use the following tabs to set options        for the pop-up menu:
<p><b>Contents</b> allows you to set the name, structure, URL, and        target of individual menu items.</p>
<p><b>Appearance </b>enables you to set the appearance of the menu’s        Up State and Over State and to set font choices for menu item text.</p>
<p><b>Advanced</b> allows you to set the properties of the menu cells.        For example, you can set cell width and height, cell color and border width,        text indention, and the length of delay before the menu appears after the        user moves the pointer over the trigger.</font></li>
</ol>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Position</b>    lets you set where the menu is positioned relative to the triggering image or    link. </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Adding,    removing, and changing the order of pop-up menu items </b></p>
<p>You use the Contents tab in the Show Pop-up Menu dialog box to create menu items.    You can also use this tab to remove existing items, or to change the order in    which they appear in a menu. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    add pop-up menu items: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Contents        tab, create a pop-up menu item by doing the following:<br />
In the Text field, select the default text (New Item), then type the text        you want to appear in the pop-up menu. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Set additional        options, as desired:<br />
If you want the menu item to open another file when clicked, in the Link        field, type the file path or click the Folder icon and browse to the document        you want to open</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you want        to set a location in which the document opens, for example in a new window        or in a specific frame, in the Target pop-up menu choose the desired location.        Note: If the frame you want to target doesn’t appear on the Target        pop-up menu, close the Show Pop-Up Menu dialog box, then in the Document        window select and name the frame.  </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button to add additional entries to the Show Pop-Up Menu preview        list.<br />
When you finish adding menu items, click OK to accept the default settings        or select another Show Pop-Up Menu tab to set additional options. </font></li>
</ol>
</div>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a submenu item: </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><br />
</b>In the Show Pop-Up Menu list, select the item you want to make into    a submenu item, then do one of the following: </font></p>
<div align="justify">
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To indent        an item in the menu list, click the Indent Item button.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To remove        an indent, click the Outdent Item button.</font></li>
</ul>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:</b>    You cannot make the first menu item in a list a submenu item.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    change the order of an item in the menu: </b><br />
In the Show Pop-Up Menu list, select the item you want to move up or down, then    click the Up or Down arrow to move the item where you want it to appear. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    remove an item from the menu: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> In the Contents        tab, select the menu entry you want to remove in the Show Pop-Up Menu list.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        minus (-) button</font></li>
</ol>
</div>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Setting    the appearance of a pop-up menu </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">After    you create the menu items, use the Show Pop-Up Menu’s Appearance tab to    set the orientation, font attributes, and button state attributes for the pop-up    menu. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:</b>    The Appearance tab’s preview pane provides an approximate rendering of    the options you set in this tab.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    set the appearance of a pop-up menu: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the pop-up        menu at the top of the Appearance tab, choose Vertical Menu or Horizontal        Menu to set the menu’s orientation.<br />
Set the text formatting options you want:<br />
In the Font pop-up menu, select the font you want to apply to the menu items.        </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Set the text        formatting options you want:<br />
In the Font pop-up menu, select the font you want to apply to the menu items.</p>
<p>Note: If the font you want to apply is not in the font list, use the Edit        Font List option, to add the desired font to the font list. To ensure the        menu appears as desired, you should choose a font that site visitor’s        are likely to have.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Up        State and Over States boxes, use the color picker to set the text and cell        colors of the menu item buttons.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When you finish        setting appearance options, click OK or select another Show Pop-Up Menu        tab to set additional options.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Setting    advanced appearance options </b></p>
<p>Use options in the Advanced tab to specify additional attributes of the menu    cells. For example, you can set the width, height, cell spacing or padding of    the menu button, indent text, and set border attributes. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    set advanced formatting attributes for a pop-up menu:<br />
</b> </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        Advanced tab, then set the options you want to apply to the menu items:
<p><b>Cell</b> <b>Width</b> sets a specific width, in pixels,        for the menu buttons. Cell width is set automatically based on the widest        item; to increase the cell width, select Pixels in the pop-up menu and enter        a value larger than the one that appears in the Cell Width text box.</p>
<p><b>Cell Height </b>sets a specific height, in pixels, for the        menu buttons. To increase the cell height, select Pixels in the pop-up menu        and enter a value larger than the one that appears in the Cell Height text        box.</p>
<p><b>Cell Padding</b> specifies the number of pixels between a cell’s        content and its boundaries.</p>
<p><b>Cell Spacing</b> specifies the number of pixels between adjacent        cells.</p>
<p><b>Text Indent </b>allows you to specify, in pixels, how far text        in a menu item is indented within the cell.</p>
<p><b> Menu Delay</b> sets the length of time between when the user        moves the pointer over the triggering image or link, and when the menu appears.        Values are in milliseconds so the default setting, 1000, equals 1 second.        For every second of delay you want, add 000; for example, for a 3 second        delay, type 3000.</p>
<p><b>Pop-up Borders</b> determines whether a border appears around        the items in the menu. If you want a border to appear around the menu items,        make sure the Show Borders checkbox is checked.</p>
<p><b>Border Width</b> sets the border’s width, in pixels.</p>
<p><b> Shadow, Border Color, and Highlight </b>allow you to pick        a color for these border options. Shadow and highlight are not reflected        in the preview. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When you finish        setting advanced appearance options, click OK or select another Show Pop-Up        Menu tab to set additional options.<br />
</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Setting    a pop-up menu’s position in a document </b><br />
</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use    position options to set where the pop-up menu displays relative to the triggering    image or link. You can also set whether the menu hides or not when the user    moves the pointer away from the trigger. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    set pop-up menu position options: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Show        Pop-Up Menu dialog box, click the Position tab.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Set the location        of the pop-up menu by doing one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            one of the preset options. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Set customized            position coordinates by typing a number in the X text box to set the            horizontal coordinate and by typing a number in the Y text box to set            the vertical coordinate. Coordinates count from the top left corner            of the menu.</font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To hide the        pop-up menu when the pointer is not over it, make sure Hide Menu onMouseOut        Event is checked. To leave the menu displayed, deselect this option.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When you finish        creating or modifying the pop-up menu, click OK.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Modifying    a pop-up menu </b></p>
<p>The Show Pop-Up Menu behavior allows you to edit or update the contents of a    pop-up menu. You can add, delete, or change menu items, rearrange them, and    set where a menu is positioned relative to the triggering image or link. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    open an existing HTML-based pop-up menu: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Dreamweaver        document, select the link or image that triggers the pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Behaviors        panel (Shift + F3), if it isn’t already open, then in the Actions        list, double-click Show Pop-Up Menu.<br />
The Show Pop-Up Menu dialog box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Make the changes        you want to make to the pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When you finish        modifying the pop-up menu, click OK.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Swap    Image </b></p>
<p>The Swap Image action swaps one image for another by changing the src attribute    of the img tag. Use this action to create button rollovers and other image effects    (including swapping more than one image at a time). Inserting a rollover image    automatically adds a Swap Image behavior to your page.<br />
<b>Note: </b>Because only the src attribute is affected by this action,    you should swap in an image that has the same dimensions (height and width)    as the original. Otherwise, the image you swap in appears compacted or expanded    to fit the original image’s dimensions.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Swap Image action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Insert        &gt; Image or click the Image button on the Insert bar to insert an image.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, enter a name for the image in the leftmost text box.<br />
The Swap Image action still works if you do not name your images; it names        unnamed images automatically when you attach the behavior to an object.        However, it is easier to distinguish images in the Swap Image dialog box        if all of the images are named beforehand. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Repeat steps        1 and 2 to insert additional images.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object (generally the image you’re going to swap) and open the Behaviors        panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Swap Image from the Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">From the Images        list, select the image whose source you want to change.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click Browse        to select the new image file, or enter the path and filename of the new        image in the Set Source To text box.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Repeat steps        6 and 7 for any additional images you want to change. Use the same Swap        Image action for all the images you want to change at once; otherwise, the        corresponding Swap Image Restore action won’t restore all of them.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        Preload Images option to load the new images into the browser’s cache        when the page is loaded.<br />
This prevents delays caused by downloading when it is time for the images        to appear. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    it isn’t, choose another event from the pop-up menu. If the events you    want are not listed, change the target browser in the Show Events For pop-up    menu. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Swap    Image Restore </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    Swap Image Restore action restores the last set of swapped images to their previous    source files. This action is automatically added whenever you attach the Swap    Image action to an object; if you left the Restore option selected while attaching    Swap Image, you should never need to select the Swap Image Restore action manually.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Go    to Timeline Frame </b></p>
<p>The Go to Timeline Frame action moves the playback head to the specified frame.    You can use this action in the Behavior channel of the Timelines panel to make    portions of the timeline loop a specific number of times, to create a Rewind    link or button, or to let the user jump to different parts of the animation.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Go To Timeline Frame action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Timeline to open the Timelines panel, and make sure that your document        contains a timeline.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object to attach the behavior to.<br />
To attach the behavior to a frame in the Timeline, click in the Behavior        channel at the desired frame. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Behaviors        panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Timeline &gt; Go to Timeline Frame from the Actions        pop-up menu. (If this action is dimmed, your document doesn’t contain        a timeline.)</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose a timeline        from the Timeline pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Enter a frame        number in the Go to Frame text box.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you are        adding this action in the Behavior channel of a timeline and want a portion        of the timeline to loop, enter the number of times the segment should loop        in the Loop text box.
<p>You must leave this text box blank if you are not attaching Go to Timeline        Frame to a frame in a timeline. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    it isn’t, choose another event from the pop-up menu. If the events you    want are not listed, change the target browser in the Show Events For pop-up    menu. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Play    Timeline and Stop Timeline </b> </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use    the Play Timeline and Stop Timeline actions to let visitors start and stop a    timeline by clicking a link or button, or to start and stop a timeline automatically    when the user rolls over a link, image, or other object. The Play Timeline action    is automatically attached to the body tag with the onLoad event when you select    Autoplay in the Timelines panel. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Play Timeline and Stop Timeline actions: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Timeline to open the Timelines panel, and make sure that your document        contains a timeline.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        object and open the Behaviors panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        plus (+) button and choose Play Timeline or Stop Timeline from the Actions        pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        timeline you want to play or stop, or choose to stop all timelines, from        the pop-up menu. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Check that        the default event is the one you want.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    it isn’t, choose another event from the pop-up menu. If the events you    want are not listed, change the target browser in the Show Events For pop-up    menu. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Validate    Form </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    Validate Form action checks the contents of specified text fields to ensure    that the user has entered the correct type of data. Attach this action to individual    text fields with the onBlur event to validate the fields as the user is filling    out the form, or attach it to the form with the onSubmit event to evaluate several    text fields at once when the user clicks the Submit button. Attaching this action    to a form prevents the form from being submitted to the server if any of the    specified text fields contains invalid data. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    use the Validate Form action: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Insert        &gt; Form or click the Form button in the Insert bar to insert a form.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Insert        &gt; Form Objects &gt; Text Field or click the Text Field button in the        Insert bar to insert a text field.<br />
Repeat this step to insert additional text fields. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Do one of        the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To validate            individual fields as the user fills out the form, select a text field            and choose Window &gt; Behaviors.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To validate            multiple fields when the user submits the form, click the &lt;form&gt;            tag in the tag selector in the bottom left corner of the Document window            and choose Window &gt; Behaviors.</font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Validate        Form from the Actions pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Do one of        the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you            are validating individual fields, select the same field that you have            selected in the Document window from the Named Fields list.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you            are validating multiple fields, select a text field from the Named Fields            list.</font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        Required option if the field must contain some data.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose from        one of the following Accept options: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use Anything            if the field is required but need not contain any particular kind of            data. (If the Required option is not selected, the Anything option is            meaningless—that is, it is the same as if the Validate Form action            were not attached to the field.)</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use E-mail            address to check that the field contains an @ symbol.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use Number            to check that the field contains only numerals.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use Number            From to check that the field contains a number in a specific range.</font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you are        validating multiple fields, repeat steps 6 and 7 for any additional fields        that you want to validate.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you are        validating multiple fields when the user submits the form, the onSubmit        event automatically appears in the Events pop-up menu. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If you are        validating individual fields, check that the default event is onBlur or        onChange.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If    it isn’t, select onBlur or onChange from the pop-up menu. Both of these    events trigger the Validate Form action when the user moves away from the field.    The difference between them is that onBlur occurs whether or not the user has    typed in the field, and onChange occurs only if the user changed the contents    of the field. The onBlur event is preferred when you have specified that the    field is required. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>About    the Layers panel </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The    Layers panel is a way to manage the layers in your document. To open the Layers    panel, choose Window &gt; Others &gt; Layers. Layers are displayed as a list    of names, in order of z-index; the first created layer appears at the bottom    of the list, and the most recently created layer at the top of the list. Nested    layers are displayed as names connected to parent layers. Click the plus (+)    or minus (–) icons (Windows) or the expander arrow (Macintosh) to show    or hide nested layers.</font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/layerimage.gif" height="154" width="208" />    </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
Use the Layers panel to prevent overlaps, to change the visibility of layers,    to nest or stack layers, and to select one or more layers. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Nesting    layers </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A    nested layer is a layer whose code is contained in another layer. Nesting is    often used to group layers together. A nested layer moves with its parent layer    and can be set to inherit visibility from its parent. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/nestedlayer.gif" height="230" width="201" />    </font></div>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a nested layer, do one of the following: </b></font></p>
<div align="justify">
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To insert        a nested layer, place the insertion point inside an existing layer and choose        Insert &gt; Layer.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To draw a        nested layer, click the Draw Layer button in the Insert bar, then drag to        draw a layer inside an existing layer. If Nesting is turned off in Layers        preferences, Alt-drag (Windows) or Option-drag (Macintosh) to draw a layer        inside an existing layer.<br />
<b>Tip:</b> Nested layers may appear differently in different        browsers. When you create nested layers, check their appearance in various        browsers frequently during the design process. </font></li>
</ul>
</div>
<ul>
<li></li>
</ul>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    nest an existing layer inside another layer using the Layers panel: </b></font></div>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Others &gt; Layers to open the Layers panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a layer        in the Layers panel, then Control-drag the layer to the target layer in        the Layers panel. Release the mouse button when the name of the target layer        is highlighted.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Selecting    layers </b><br />
</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select    one or more layers to manipulate them or change their properties. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    select a layer, do one of the following: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        name of the layer in the Layers panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click a layer’s        selection handle. If the selection handle isn’t visible, click anywhere        inside the layer to make the handle visible.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/drawlayer.gif" height="128" width="204" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click a layer’s        border. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Control-Shift-click        (Windows) or Command-Shift-click (Macintosh) inside a layer. If multiple        layers are selected, this deselects all other layers and selects only the        one that you clicked.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        layer-code marker (in the Design view) that represents the layer’s        location in the HTML code. If the layer-code marker isn’t visible,        choose View &gt; Visual Aids &gt; Invisible Elements.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    select multiple layers, do one of the following: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Shift-click        two or more layer names in the Layers panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Shift-click        inside or on the border of two or more layers.<br />
</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When    multiple layers are selected, the handles of the last selected layer are highlighted    in black. The resize handles of the other layers are highlighted in white. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    resize the selected layer, do one of the following: </b></font></p>
<div align="justify">
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To resize        by dragging, drag any of the layer’s resize handles.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To resize        one pixel at a time, hold down Control (Windows) or Option (Macintosh) while        pressing an arrow key.<br />
<b>Note:</b> The arrow keys move the right and bottom borders        of the layer; you can’t resize using the top and left borders with        this technique. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To resize        by the grid snapping increment, hold down Shift-Control (Windows) or Shift-Option        (Macintosh) while pressing an arrow key. For information about setting the        grid snapping increment</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, type values for width (W) and height (H).</font></li>
</ul>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    resize multiple layers at once: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Design        view, select two or more layers. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Do one of        the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Modify &gt; Align &gt; Make Same Width or Modify &gt; Align &gt; Make            Same Height.<br />
The first selected layers conform to the width or height of the last            selected layer (highlighted in black). </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the            Property inspector, under Multiple Layers, enter width and height values.            The values are applied to all selected layers.</font></li>
</ul>
</li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Snapping    layers to the grid </b></p>
<p>Use the grid as a visual guide for drawing, positioning, or resizing layers    in the Document window’s Design view. You can make page elements automatically    snap to the grid as you move them, and change the grid or control the snapping    behavior by specifying grid settings. Snapping works whether or not the grid    is visible. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    show or hide the grid: </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose    View &gt; Grid &gt; Show Grid. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    enable or disable snapping: </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose    View &gt; Grid &gt; Snap to Grid. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    change grid settings: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose View        &gt; Grid &gt; Grid Settings.<br />
The Grid Settings dialog box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Set options        as desired.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Viewing    and setting layer properties </b></p>
<p>You can view and set various attributes of a layer in the Property inspector.    </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    view all layer properties: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a layer.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Property        inspector by choosing Window &gt; Properties.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If the Property        inspector isn’t expanded, click the expander arrow in the lower right        corner to see all properties.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/layerproperties.gif" height="74" width="400" /> </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    set layer properties with the Property inspector: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a layer.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Property        inspector by choosing Window &gt; Properties.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Change the        layer’s attributes by setting properties.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Changing    layer visibility </b></p>
<p>While working on your document, you can show and hide layers manually, using    the Layers panel, to see how the page will appear under different conditions.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:</b>    The currently selected layer always becomes visible and appears in front of    other layers while it’s selected.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    change layer visibility: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Others &gt; Layers to open the Layers panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click in the        eye-icon column for a layer to change its visibility. </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">An open            eye means the layer is visible. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A closed            eye means the layer is invisible. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">If there            is no eye icon, usually the layer inherits visibility from its parent.            (When layers are not nested, the parent is the document body, which            is always visible.) Also, no eye icon appears when no visibility is            specified (which appears in the Property inspector as Default visibility).<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/showhidelayer.gif" height="154" width="208" /> </font></li>
</ul>
</li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To    change the visibility of all layers at once: </font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Others &gt; Layers to open the Layers panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click the        header eye icon at the top of the column.<br />
<b>Note</b>: This procedure can set all layers to visible or hidden,        but not to inherit. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Converting    between layers and tables </b></p>
<p>You can create your layout using layers, then convert the layers to tables so    that your layout can be viewed in older browsers. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    convert layers to a table: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Modify        &gt; Convert &gt; Layers to Table. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the dialog        box that appears, select the desired options.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.<br />
The layers are converted to a table. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    convert tables to layers: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Modify        &gt; Convert &gt; Tables to Layers.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the dialog        box that appears, select the desired options.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.<br />
The tables are converted to layers. Empty cells are not converted to layers        unless they have background colors. </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Preventing    layer overlaps </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Because    table cells cannot overlap, Dreamweaver cannot create a table from overlapping    layers. If you plan to convert the layers in a document to tables for compatibility    with 3.0 browsers, use the Prevent Overlap option to constrain layer movement    and positioning so that layers don’t overlap. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    prevent layers from overlapping, do one of the following: </b></font></p>
<div align="justify">
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select the        Prevent Overlaps option in the Layers panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Modify        &gt; Arrange &gt; Prevent Layer Overlaps.</font></li>
</ul>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When    this option is on, a layer can’t be created in front of, moved or resized    over, or nested within an existing layer. If you activate this option after    creating overlapping layers, drag each overlapping layer to move it away from    other layers. Dreamweaver does not automatically fix existing overlapping layers    in the page when you enable Prevent Layer Overlaps. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">When    this option and snapping are enabled, a layer won’t snap to the grid if    it would cause two layers to overlap. Instead, it will snap to the edge of the    closest layer. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:</b>    Certain actions allow you to overlap layers even when the Prevent Overlaps option    is enabled. If you insert a layer using the Insert menu, enter numbers in the    Property inspector, or reposition layers by editing the HTML source code, you    can cause layers to overlap or nest while this option is enabled. If overlaps    happen, drag overlapping layers in the Design view to separate them. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Using    the Timelines panel </b><br />
The Timelines panel shows how the properties of layers and images change over    time. Choose Window &gt; Others &gt; Timelines to open the Timelines panel.    </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/timeline.gif" height="322" width="624" />    </font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><br />
Timeline pop-up menu</b> specifies which of the document’s timelines    is currently displayed in the Timelines panel.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Playback    head</b> shows which frame of the timeline is currently displayed in the    Document window. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Frame    numbers</b> indicate the sequential numbering of frames. The number between    the Back and Play buttons is the current frame number. You control the duration    of animation by setting the total number of frames and the number of frames    per second (fps). The default setting of 15 frames per second is a good average    rate to use for most browsers running on common Windows and Macintosh systems.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note:</b>    Faster rates may not improve performance. Browsers always play every frame of    the animation, even if they cannot attain the specified frame rate. The frame    rate is ignored if it is higher than the browser can manage.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Context    menu </b>contains various timeline-related commands. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Behaviors    channel</b> is the channel for behaviors that should be executed at a particular    frame in the timeline. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Animation    bars</b> show the duration of each object’s animation. A single row    can include multiple bars representing different objects. Different bars cannot    control the same object in the same frame. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Keyframes</b>    are frames in a bar where you have specified properties (such as position) for    the object. Dreamweaver calculates intermediate values for frames in between    keyframes. Small circles mark keyframes. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Playback    options </b><br />
The following are the playback options for viewing the animation. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/playback.gif" height="23" width="415" /></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Rewind    </b>moves the playback head to the first frame in the timeline.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Back</b>    moves the playback head one frame to the left. Click Back and hold down the    mouse button to play the timeline backward. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Play</b>    moves the playback head one frame to the right. Click Play and hold down the    mouse button to play the timeline forward. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Autoplay    </b>makes a timeline begin playing automatically when the current page    loads in a browser. Autoplay attaches a behavior to the page’s body tag    that executes the Play Timeline action when the page loads. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Loop    </b>makes the current timeline loop indefinitely while the page is open    in a browser. Loop inserts the Go to Timeline Frame behavior in the Behaviors    channel after the last frame of the animation. Double-click the behavior’s    marker in the Behaviors channel to edit the parameters for this behavior and    change the number of loops. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Creating    a timeline by dragging a path </b><br />
If you want to create an animation with a complex path, it may be more efficient    to record the path as you drag the layer rather than creating individual keyframes.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a timeline by dragging a path: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a layer.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Move the layer        to where it should be when animation begins.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Modify        &gt; Timeline &gt; Record Path of Layer.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Drag the layer        around the page to create a path.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Release the        layer at the point where the animation should stop.<br />
Dreamweaver adds an animation bar to the timeline, containing the appropriate        number of keyframes. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Timelines        panel, click the Rewind button; then hold down the Play button to preview        your animation.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Modifying    timelines </b></p>
<p>After defining a timeline’s basic components, you can make changes such    as adding and removing frames, changing the start time of the animation, and    so on. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    modify a timeline, do any of the following: </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To    make the animation play longer, drag the end frame marker to the right. All    the keyframes in the animation shift so that their relative positions remain    constant. To prevent the other keyframes from moving, Alt-drag (Windows) or    Option-drag (Macintosh) the end frame marker. </font></p>
<div align="justify">
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To make the        layer reach a keyframe position earlier or later, move the keyframe marker        left or right in the bar. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To change        the start time of an animation, select one or more of the bars associated        with the animation (press Shift to select more than one bar at a time) and        drag left or right.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To shift the        location of an entire animation path, select the entire bar and then drag        the object on the page. Dreamweaver adjusts the position of all keyframes.        Making any type of change with an entire bar selected changes all the keyframes.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To add or        remove frames in the timeline, choose Modify &gt; Timeline &gt; Add Frame        or Modify &gt; Timeline &gt; Remove Frame.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To make the        timeline play automatically when the page opens in a browser, click Autoplay.        Autoplay attaches a behavior to the page that executes the Play Timeline        action when the page loads.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To make the        timeline loop continuously, click Loop. Loop inserts the Go To Timeline        Frame action in the Behaviors channel after the last frame of the animation.        You can edit the parameters for this behavior to define the number of loops.</font></li>
</ul>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Changing    image and layer properties with timelines </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In    addition to moving layers with timelines, you can change the visibility, size,    and stacking order of a layer; you can also change the source file of an image.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    change image and layer properties with a timeline: </b><br />
</font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Timelines        panel, do one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select            an existing keyframe in the bar controlling the object you want to change.            (The start and end frames are always keyframes.) </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Create            a new keyframe by clicking a frame in the middle of the animation bar            and choosing Modify &gt; Timeline &gt; Add Keyframe. You can instead            create a new keyframe by Control-clicking (Windows) or Command-clicking            (Macintosh) a frame in the animation bar.</font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Define new        properties for the object by doing one of the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To change            the source file of an image, click the folder icon next to the Src text            box in the Property inspector, then browse to and select a new image.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To change            the visibility of a layer, choose inherit, visible, or hidden from the            pop-up menu in the Vis text box of the Property inspector.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To change            the size of a layer, drag the layer’s resize handles or enter            new values in the Width and Height text boxes in the Property inspector.            Not all browsers can dynamically change the size of a layer.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To change            the stacking order of a layer, enter a new value in the Z-Index text            box or use the Layers panel to change the stacking order of the current            layer </font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Hold down        the Play button to see the animation.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Using    multiple timelines </b></p>
<p>Instead of trying to control all the action on a page with one timeline, it’s    easier to work with separate timelines that control discrete parts of the page.    For example, a page might include interactive elements that each trigger a different    timeline. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    manage multiple timelines, do any of the following: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To create        a new timeline, choose Modify &gt; Timeline &gt; Add Timeline.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To remove        the selected timeline, choose Modify &gt; Timeline &gt; Remove Timeline.        This permanently removes all animations from the selected timeline.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To rename        the selected timeline, choose Modify &gt; Timeline &gt; Rename Timeline        or enter a new name in the Timeline pop-up menu in the Timelines panel.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To view a        different timeline in the Timelines panel, choose a new timeline from the        Timeline pop-up menu in the Timelines panel.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Copying    and pasting animations<br />
</b><br />
Once you have an animation sequence that you like, you can copy it and paste    it into another area of the current timeline, into another timeline in the same    document, or into a timeline in another document. You can also copy and paste    multiple sequences at once. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    cut or copy and paste animation sequences: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click an animation        bar to select a sequence. To select multiple sequences, Shift-click multiple        animation bars; to select all sequences, press Control+A</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Copy or cut        the selection.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Do one of        the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Move the            playback head to another spot in the current timeline.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select            another timeline from the Timeline pop-up menu.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open another            document, or create a new one, and then click in the Timelines panel.</font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Paste the        selection into the timeline.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Animation    bars for the same object cannot overlap, because a layer cannot be in two places    at one time (nor can an image have two different sources at a time). If the    animation bar you are pasting would overlap another animation bar for the same    object, Dreamweaver automatically shifts the selection to the first frame that    doesn’t overlap.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Linking    files and documents </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can use the Property inspector and the Point-to-File icon to create links from    an image, an object, or text to another document or file. For information about    using the site map to create links.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    link documents using the Property inspector’s folder icon or link text    box: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select text        or an image in the Document window’s Design view.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the Property        inspector (Window &gt; Properties), and then do one of the following:<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/linkproperties.gif" height="45" width="400" /> </font></p>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click            the folder icon to the right of the Link text box to browse to and select            a file.<br />
The path to the linked document appears in the URL field. Use the Relative            To pop-up menu in the Select HTML File dialog box to indicate whether            to make the path document-relative or root-relative, then click Select.            </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Type the            path and filename of the document in the Link text box.<br />
To link to a document in your site, enter a document-relative or site            root-relative path. To link to a document outside your site, enter an            absolute path including the protocol (such as http://). You can use            this approach to enter a link for a file that hasn’t been created            yet. </font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">From the Target        pop-up menu, select a location in which to open the document.<br />
To make the linked document appear somewhere other than in the current window        or frame, select an option from the Target pop-up menu on the Property inspector:        </font></p>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">_blank            loads the linked document in a new, unnamed browser window.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">_parent            loads the linked document in the parent frame or parent window of the            frame that contains the link. If the frame containing the link is not            nested, then the linked document loads in the full browser window.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">_self            loads the linked document in the same frame or window as the link. This            target is the default, so you usually don’t have to specify it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">_top loads            the linked document in the full browser window, thereby removing all            frames.</font></li>
</ul>
</li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    link documents using the Point-to-File icon: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select text        or an image in the Document window’s Design view.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Drag the Point-to-File        icon at the right of the Link text box in the Property inspector and point        to another open document, a visible anchor in an open document, or a document        in the Site panel.<br />
The Link text box updates to show the link.<br />
<b><br />
Note: </b>You can link to an open document only if your documents are        not maximized in the Document window. When you point to an open document,        that document moves to the foreground of your screen while you are making        your selection. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Release the        mouse button.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a link from a selection in an open document: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select text        in the Document window.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Shift-drag        from the selection.<br />
The Point-to-File icon appears as you drag. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Point to another        open document, a visible anchor in an open document, or a document in the        Site panel.
<p><b>Note:</b> You can link to an open document only if your documents        are not maximized in the Document window. When you point to an open document,        that document moves to the foreground of your screen while you are making        your selection. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Release the        mouse button.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    link documents using the site map and the Point-to-File icon: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Expand the        Site panel, and then display both the Site Files and the Site Map views        by holding down the Site Map icon and choosing Map and Files.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select an        HTML file in the site map.<br />
The Point-to-File icon appears next to the file. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Drag the Point-to-File        icon and point to another file in the site map or to a local file in the        Site Files view.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Release the        mouse button.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A    hypertext link with the name of the linked file is placed at the bottom of the    selected HTML file. This method works well when you are building your site and    you want to create links across the site quickly. </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Linking    to a specific place in a document </b><br />
</font></div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can use the Property inspector to link to a particular section of a document    by first creating named anchors. Named anchors let you set markers in a document,    which are often placed at a specific topic or at the top of a document. You    can then create links to these named anchors, which quickly take your visitor    to the specified position. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Creating    a link to a named anchor is a two-step process. First, create a named anchor;    then create a link to the named anchor. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="createanchor"></a>To    create a named anchor: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window’s Design view, place the insertion point where you want the        named anchor.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Do one of        the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; Named Anchor.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Press            Control+Alt+A</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select            the Common tab in the Insert bar and click the Named Anchor button.
<p>The Named Anchor dialog box appears.</font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Anchor        Name field, type a name for the anchor.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Note</b>:    If you do not see the anchor marker, choose View &gt; Visual Aids &gt; Invisible    Elements.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    link to a named anchor: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window’s Design view, select text or an image to create a link from.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Link        text box of the Property inspector, type a number sign (#) and the name        of the anchor. For example: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To link            to an anchor named “top” in the current document, type #top.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To link            to an anchor named “top” in a different document in the            same folder, type filename.html#top.<br />
<b>Note</b>: Anchor names are case sensitive. </font></li>
</ul>
</li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    link to a named anchor using the point-to-file method: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open the document        containing the named anchor you want.<br />
<b>Note: </b>Choose View &gt; Visual Aids &gt; Invisible Elements        to make the anchor visible if you don’t see it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window’s Design view, select text or an image you want to link from.        (If this is another open document, you must switch to it.)</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Do one of        the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click            the Point-to-File icon to the right of the Link text box in the Property            inspector and drag it to the anchor you want to link to: either an anchor            within the same document or an anchor in another open document.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Shift-drag            in the Document window from the selected text or image to the anchor            you want to link to: either an anchor within the same document or an            anchor in another open document.</font></li>
</ul>
</li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="creatingahyperlink"></a>Creating    a hyperlink </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can add hyperlink text to link to another file. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    add a hyperlink using the Hyperlink command: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Place the        insertion point in the document where you want the hyperlink to appear.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Do one of        the following to display the Insert Hyperlink dialog box: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; Hyperlink.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select            the Common tab in the Insert bar, and then click the Hyperlink button.<br />
The Hyperlink dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/hyperlinkbox.gif" height="208" width="410" /> </font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Complete the        dialog box.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Creating    an e-mail link </b></p>
<p>An e-mail link opens a new blank message window (using the mail program associated    with the user’s browser) when clicked. In the e-mail message window, the    To field is automatically updated with the address specified in the e-mail link.    </font></p>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create an e-mail link using the Insert E-Mail Link command: </b><br />
</font></p>
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window’s Design view, position the insertion point where you want        the e-mail link to appear, or select the text or image you want to appear        as the e-mail link. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Do one of        the following to insert the link: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; E-Mail Link.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select            the Common tab in the Insert bar, and then click the Insert E-Mail Link            button.
<p>The E-Mail Link dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/emaillink.gif" height="141" width="358" /> </font></li>
</ul>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Complete the        dialog box.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click on Ok</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create an e-mail link using the Property inspector: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select text        or an image in the Document window’s Design view.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Link        text box of the Property inspector, type mailto: followed by an e-mail address.
<p>Do not type any spaces between the colon and the e-mail address. For example,        type mailto:contact@cpadhikari.com.np </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Creating    null and script links </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>A    null link </b>is an undesignated link. Use null links to attach behaviors    to objects or text on a page. Once you have created a null link, you can attach    a behavior to it to swap an image or to display a layer when the pointer is    moved over the link. For information about attaching behaviors to objects.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Script    links</b> execute JavaScript code or call a JavaScript function and are    useful for giving visitors additional information about an item without leaving    the current web page. Script links can also be used to perform calculations,    form validations, and other processing tasks when a visitor clicks a specific    item. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a null link:</b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select text,        an image, or an object in the Document window’s Design view.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, type javascript:; (the word javascript, followed by a colon,        followed by a semicolon) in the Link text box.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a script link: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select text,        an image, or an object in the Document window’s Design view.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Link        text box of the Property inspector, type javascript: followed by some JavaScript        code or a function call.<br />
For example, typing javascript:alert(&#8216;This link leads to the index&#8217;) in        the Link text box produces a link that, when clicked, displays a JavaScript        alert box with the message This link leads to the index.</p>
<p><b>Note</b>: Because the JavaScript code appears in the HTML between        double quotation marks (as the value of the href attribute), you must use        single quotation marks in the script code or “escape” any double        quotation marks by preceding them with a backslash (for example, \&#8221;This        link leads to the index\&#8221;). </font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Managing    links </b><br />
</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Dreamweaver    can update links to and from a document whenever you move or rename the document    within a local site. This feature works best when you store your entire site    (or an entire self-contained section of it) on your local disk. Dreamweaver    does not change files in the remote folder until you put the local files on    or check them in to the remote server. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    turn on link management in Dreamweaver: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Edit        &gt; Preferences<br />
The Preferences dialog box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select General        from the category list on the left.<br />
The General preferences options appear.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/preferencedialogbox.gif" height="360" width="400" /> </font></li>
</ol>
</div>
<ol start="3">
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In        the Document Options section, select Always or Prompt from the Update Links        when Moving Files pop-up menu.</font></div>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click        OK.<br />
To make the updating process faster, Dreamweaver can create a cache file        in which to store information about all the links in your local folder.        This cache file is created when you select the Cache option in the Site        Definition dialog box, and the cache file updates invisibly as you use Dreamweaver        to add, change, or delete links to files on your local site. </font></div>
</li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a cache file for your site: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Site        &gt; Edit Sites.<br />
The Edit Sites dialog box appears. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select a site,        and then click Edit.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select Local        Info from the category list on the left.<br />
The Site Definition dialog box displays the Local Info options. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Local        Info category, select the Enable Cache checkbox.<br />
The first time you change or delete links to files in your local folder        after launching Dreamweaver, Dreamweaver prompts you to load the cache.        If you click Yes, the cache loads and Dreamweaver updates all the links        to the file you just changed. If you click No, the change is noted in the        cache, but the cache does not load, and Dreamweaver does not update links.        </font></li>
</ol>
</div>
<ol>
<li>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">It        may take a few minutes for the cache to load on larger sites; most of this        time is spent comparing the time stamps of the files on the local site with        the time stamps recorded in the cache to see if the cache is out of date.        If you have not changed any files outside Dreamweaver, you can safely click        the Stop button when it appears. </font></p>
</li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    re-create the cache for your site: </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In    the Site panel, choose Site &gt; Recreate Site Cache. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Inserting    a jump menu </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">To    insert a jump menu in your document, use the Jump Menu form object. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a jump menu: </b><br />
</font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Open a document,        and then place the insertion point in the Document window.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Insert        &gt; Form Object &gt; Jump Menu.<br />
Select the Form tab in the Insert bar, and then click the Jump Menu button.</p>
<p>The Insert Jump Menu dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/jumpmenu.gif" height="238" width="376" /> </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Complete the        dialog box.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
</ol>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    edit a jump menu item using the Property inspector: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Window        &gt; Properties to open the Property inspector, if it isn’t open.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Document        window’s Design view, click the jump menu object to select it.<br />
The List/Menu icon appears in the Property inspector. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In the Property        inspector, click the List Values button.<br />
The List Values dialog box appears. </font></li>
</ol>
</div>
<ol>
<li>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/jumpeditmenu.gif" height="186" width="405" /></font></p>
</li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Make        changes to the menu items as necessary, and then click OK.</font></div>
</li>
</ol>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a name="creatingnavigationbars"></a>Creating    navigation bars </b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">A    navigation bar consists of an image (or set of images) whose display changes    based on the actions of a user. Navigation bars often provide an easy way to    move between pages and files on a site.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Before    using the Insert Navigation Bar command, create a set of images for the display    states of each navigation element. (It can be helpful to think of a navigation    bar element as a button, because when clicked, it takes the user to another    page.) </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>A    navigation bar element can have four states: </b></font></p>
<div align="justify">
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Up:</b>        the image that appears when the user hasn’t yet clicked or interacted        with the element. </font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Over:</b>        the image that appears when the pointer is moved over the Up image. The        element’s appearance changes (for example, it may get lighter) to        let users know they can interact with it.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Down:</b>        the image that appears after the element has been clicked.<br />
For example, when a user clicks an element, a new page loads and the navigation        bar is still displayed, but the clicked element is darkened to show that        it’s been selected.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Over        While Down: </b>the image that appears when the pointer is rolled over        the Down image after the element has been clicked. </font></li>
</ul>
</div>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    don’t have to include navigation bar images for all four of these states;    for example, you may just want Up and Down states. </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">You    can create a navigation bar, copy it to other pages in your site, use it with    frames, and edit the page behaviors to show different states as pages are accessed.    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To    create a navigation bar: </b></font></p>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Do one of        the following: </font>
<ul>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose            Insert &gt; Interactive Images &gt; Navigation Bar.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Select            the Common tab of the Insert bar, and then click the Insert Navigation            Bar button.<br />
The Insert Navigation Bar dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/navigationbar.gif" height="331" width="420" /> </font></li>
</ul>
</li>
</ol>
</div>
<ol start="2">
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Complete the      dialog box.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font>
<div align="justify">
<blockquote></blockquote>
</div>
</li>
</ol>
<div align="justify">
<div align="justify"></div>
<div align="justify">
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>To        modify a navigation bar: </b></font></div>
</div>
</div>
<div align="justify">
<ol>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Choose Modify        &gt; Navigation Bar.<br />
The Modify Navigation Bar dialog box appears.<br />
<img src="file:///F:/e-book/E-Book%20%28D%29/webpage_designing/dreamweaver/image/modifynavigationbar.gif" height="300" width="403" /></font></li>
<li>
<div align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In          the Nav Bar Elements list, select the element you want to edit.</font></div>
</li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Make changes        as necessary.</font></li>
<li><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Click OK.</font></li>
</ol>
</div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/onlinemal.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/onlinemal.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onlinemal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onlinemal.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onlinemal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onlinemal.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onlinemal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onlinemal.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onlinemal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onlinemal.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onlinemal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onlinemal.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onlinemal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onlinemal.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onlinemal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onlinemal.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onlinemal.wordpress.com&amp;blog=3044106&amp;post=4&amp;subd=onlinemal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onlinemal.wordpress.com/2008/03/03/macromedia-dreamweaver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f77a444800a786c5420d1540aa0cd1bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tenpa</media:title>
		</media:content>
	</item>
		<item>
		<title>How to create web page on Html?</title>
		<link>http://onlinemal.wordpress.com/2008/03/03/how-to-create-web-page-on-html/</link>
		<comments>http://onlinemal.wordpress.com/2008/03/03/how-to-create-web-page-on-html/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 07:51:01 +0000</pubDate>
		<dc:creator>tenpa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://onlinemal.wordpress.com/?p=3</guid>
		<description><![CDATA[What is a Web Page? A web is a page with hypertext links that cross-reference text in the Internet .A web page is also know as HTML pages because it is coded in HTML language. Today web pages(HTML pages ) are the standard interface of the internet. Power of HTML Earlier HTML pages could only [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onlinemal.wordpress.com&amp;blog=3044106&amp;post=3&amp;subd=onlinemal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="left"><a title="about" name="about"></a><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>What    is a Web Page?</b><br />
A web is a page with hypertext links that cross-reference text in the Internet    .A web page is also know as HTML pages because it is coded in HTML language.<br />
Today web pages(HTML pages ) are the standard interface of the internet.</font></p>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Power of HTML</b><br />
Earlier HTML pages could only hold text.However, since the boom of Internet    people have added more and more capabilities to this langauge.<br />
It can now have images,animations,multimedia contents and even interactive application.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>What    is HTML ?</b><br />
Most HTML tags have two parts the strarting tag that indicates the start of    text or formatting and the closing tag that indicates the end of text of formatting    .<br />
The closing tag is the same as the starting tag,the only differneces is that    it begins with a / just after the &lt; sign</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Creating    and editing web pages</b><br />
Since a web page is a text file it can be created or edited in any text editor.    However, there is application specially made for designing web pages. These    applications are known as HTML editors.<br />
Use any editor of your choice to create web pages.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a title="blank" name="blank"></a>A    blank HTML page</b><br />
A blank HTML page has the following code:<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;It appears in the title bar&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
It appears in the page<br />
&lt;/body&gt;<br />
&lt;/html&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Creating    your first web page</b><br />
The above written code is a blank web page.Copy it to Notepad.Write the title    of the page between the &lt;TITLE&gt; and &lt;/TITLE&gt; tags.And write some    one or two paragraphs of the between the &lt;BODY&gt; and &lt;/BODY&gt; tags.<br />
Give the save command and in the file name box type the filename inside double    quotation(&#8220;&#8221;)with an extension of &#8216;.htm&#8217;.Now you can open the document    in any browser and view it.</font></p>
<p align="justify"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">    <a title="tags" name="tags"></a>Tags and their Properties</font></b></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Most    of the HTML tags have their properties. The properties of every tag goes inside    the opening tag .A tag can have any number of properties separated by space    .Most of the properties have a value.For example if you are specifying the color    property then its value will be the name of the color. A tag with properties    will be written like.<br />
&lt;tag property1=&#8221;value&#8221; property2=&#8221;value&#8221;&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Body    tags and their meaning </b></font></p>
<table align="left" border="1" cellpadding="3" cellspacing="0" width="73%">
<tr bgcolor="#66ffff" valign="top">
<td width="27%"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Opening        Tag</font></b></td>
<td width="26%"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Closing        Tag</font></b></td>
<td bgcolor="#66ffff" width="47%"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use</font></b></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;body&gt;        </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/body&gt;        </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Visible        area of the HTML Page</font></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;Font&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/font&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Formatting        start and end.</font></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;p&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/p&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Paragraph        start and end</font></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;hr&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">[None]        </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Horizontal        line</font></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;br&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">[None]        </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Line        Break</font></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;B&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/B&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Start        and end bold text.</font></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;I&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/I&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Start        and end Italic text.</font></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td height="22"><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;u&gt;        </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/u&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Start        and end Underline text.</font></td>
</tr>
</table>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
</font></p>
<p align="justify">&nbsp;</p>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Example</b><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;First page&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;p align=&#8221;center&#8221;&gt;<br />
&lt;font size=&#8221;5&#8243; color=&#8221;green&#8221; face=&#8221;verdana&#8221;&gt;&lt;b&gt;&lt;i&gt;&lt;u&gt;Welcome    to my site&lt;/u&gt;&lt;/i&gt;&lt;/b&gt;&lt;/font&gt;<br />
&lt;/p&gt;<br />
&lt;hr size=&#8221;3&#8243; width=&#8221;100%&#8221;color=&#8221;red&#8221;&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
<b>More tag propeties.</b><br />
<b>Propeties                           Value</b><br />
&lt;p&gt; tag                            align Paragraph alignment[left,center,right and justify]</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;h1&gt;to&lt;H6&gt;Tag           Heading one(It is the greatest font size)                                         &lt;H2&gt;&#8230;.&lt;h6&gt;It    is smallest font then the previous font size</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;hr&gt;    tag                        width    Width of line in pixel or percent<br />
align    alignment[left,center and right]<br />
Color    Color or line(IE only)<br />
size    size of the Horizontal line<br />
</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
&lt;Font&gt; Tag                     Font    face<br />
Font size<br />
Font color</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a title="list" name="list"></a>List    tags and their use</b></font></p>
<p align="justify">&nbsp;</p>
<table border="1" cellpadding="3" cellspacing="0" width="73%">
<tr bgcolor="#66ffff" valign="top">
<td width="27%"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Opening        Tag</font></b></td>
<td width="26%"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Closing        Tag</font></b></td>
<td bgcolor="#66ffff" width="47%"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Use</font></b></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;ul&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/ul&gt;        </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Start        and end of the bullet list</font></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;ol&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/ol&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Start        and end of the number list</font></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;dir&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/dir&gt;        </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Start        and end of directory list</font></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;li&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/li&gt;        </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Start        and end of the list item</font></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;div&gt;        </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/div&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Start        and end of division or paragraph</font></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;img&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">none</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Insert        image.</font></td>
</tr>
<tr bgcolor="#999999" valign="top">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;a&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/a&gt;</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Hyperlink        or anchor.</font></td>
</tr>
</table>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></p>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Tag Proepeties<br />
&lt;UL&gt;tag<br />
Type                          Type    of bullet(circle,sqaure or disc)</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;OL&gt;    tag<br />
Type                          Type    of numbering(1,A,a,I or i)<br />
Start                             Beginning count of numbering (e.g.1,2,3,4 etc)</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;div&gt;tag<br />
Align                           Alignment    of paragraph(left,center,right ro justify)</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Example</b><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;List &lt;/title&gt;<br />
&lt;/head&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;body&gt;<br />
&lt;p&gt;&lt;strong&gt;Computer Course&lt;/strong&gt; &lt;/p&gt;<br />
&lt;ol start=&#8221;5&#8243; type=&#8221;i&#8221;&gt;<br />
&lt;li&gt;Java&lt;/li&gt;<br />
&lt;li&gt;Oracle&lt;/li&gt;<br />
&lt;li&gt;C++&lt;/li&gt;<br />
&lt;li&gt; HTML&lt;/li&gt;<br />
&lt;li&gt;Javascript&lt;/li&gt;<br />
&lt;/ol&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><br />
<a title="img" name="img"></a>img tag properties</b></font></p>
<table border="1" cellpadding="2" cellspacing="0" width="70%">
<tr bgcolor="#66ffff">
<td width="31%">
<div align="left"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Property</font></b></div>
</td>
<td width="69%">
<div align="left"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Value</font></b></div>
</td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">SRC</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Location        of the image(e.g.&#8221;c:\windows\circle.gif&#8221;)</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">WIDTH</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Width        of the image in pixel</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">HEIGHT</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Height        of the image in pixel</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">ALT</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Alternate        or tool-tip text</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">VSPACE        </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Space        to the right and left of image in pixels</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">HSPACE</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Space        to the right and left of image in pixels</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">NAME</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Name        of the image.</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">LOWSRC</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Location        of a lower resolution image</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">ALIGN</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Alignment        of text with imag.(top,middle,bottom etc)</font></td>
</tr>
</table>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Example</b><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Image&lt;/title&gt;<br />
&lt;/head&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;body&gt;<br />
&lt;p align=&#8221;center&#8221;&gt;&lt;strong&gt;Welcome to My site&lt;/strong&gt;&lt;/p&gt;<br />
&lt;p align=&#8221;center&#8221;&gt;&lt;strong&gt;&lt;img src=&#8221;C:/scene.jpg&#8221;    alt=&#8221;Click here&#8221; name=&#8221;Image1&#8243; width=&#8221;200&#8243; height=&#8221;200&#8243;    hspace=&#8221;10&#8243; vspace=&#8221;10&#8243; id=&#8221;Image1&#8243;&gt;&lt;/strong&gt;&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">    </font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a title="a" name="a"></a>Anchor    tag properties</b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Property                                      Value</b><br />
&lt;A&gt;Tag<br />
Name                                  Name    of the anchor<br />
HREF                                   Location    of the file that is referenced.<br />
TARGET                               Name    of the window or frame to open the target file.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">NOTE:    <b> <font size="1">Hyperlink is the part of the references another document.    When you click on a hyperlink the referenced document is opened. Anchor is a    reference point inside a document that can be referenced by a hyperlink. When&lt;A&gt;tag    is used as anchor it doesn&#8217;t have a closing tag.</font></b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a title="table" name="table"></a>Table    in an HTML document</b></font></p>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2">In HTML a table begins with a &lt;TABLE&gt; tag and ends with a &lt;/TABLE&gt;tag.<br />
Between the &lt;TABLE&gt; tag there are the rows that are enclosed between &lt;TR&gt;and    &lt;/TR&gt;tags. So there is one pair of &lt;TR&gt;and &lt;/TR&gt;tags for each    row.<br />
Inside these rows are the cells, which are enclosed between the &lt;TD&gt; tag    pairs inside every row should be the same. The contents of the cell goes between    the &lt;TD&gt;and &lt;/TD&gt; tags.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
<b>Example</b><br />
&lt;HTML&gt;<br />
&lt;HEAD&gt;&lt;TITLE&gt;Table &lt;/TITLE&gt;<br />
&lt;/HEAD&gt;<br />
&lt;BODY&gt;<br />
&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;<br />
Row    1, Col 1<br />
&lt;/td&gt;<br />
&lt;td&gt;<br />
Row    1, Col 2<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;<br />
Row    2, Col 1<br />
&lt;/td&gt;<br />
&lt;td&gt;<br />
Row    2, Col 2<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/BODY&gt;<br />
&lt;/HTML&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Contents    of a cell</b><br />
The context of a cell is written between the &lt;TD&gt;and &lt;/TD&gt;tags.A    cell of table can contain any text,HTML,image or even another table(i.e.you    can have a table inside another table).<br />
Tables are used in web pages to arrange the layout and /or to display tabular    data.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Table/cell    Properties<br />
</b>&lt;Table&gt;and &lt;TD&gt;tag<b> </b></font></p>
<table border="1" cellpadding="2" cellspacing="0" width="61%">
<tr bgcolor="#66ffff">
<td width="31%">
<div align="left"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Property</font></b></div>
</td>
<td width="69%">
<div align="left"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Value</font></b></div>
</td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">WIDTH</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Width        of table /cell in pixel or percent</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">HEIGHT</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Height        of table/cell in pixel or percent</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">BGCOLOR</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Background        color of table/cell</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">BACKGROUND</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Background        image of table/cell</font></td>
</tr>
</table>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">    <b>&lt;Table&gt; Tag only</b></font><font face="Verdana, Arial, Helvetica, sans-serif" size="2">    </font></p>
<table border="1" cellpadding="2" cellspacing="0" width="61%">
<tr bgcolor="#66ffff">
<td width="31%">
<div align="left"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Property</font></b></div>
</td>
<td width="69%">
<div align="left"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Value</font></b></div>
</td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">BORDER</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Thickness        of table border in pixel</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">BORDERCOLOR        </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Color        of table border</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">CELLSPACNING</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Space        between cells in pixel</font></td>
</tr>
<tr bgcolor="#999999">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">CELLPADDING</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Space        between cell border and content in pixel</font></td>
</tr>
</table>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
</font><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">More    tag properties</font></b><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
Property                        Value<br />
&lt;Td&gt;tag only<br />
ROWSPAN                         Number of rows the cell spans</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Example</b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;HTML&gt;<br />
&lt;HEAD&gt;<br />
&lt;TITLE&gt;&lt;/TITLE&gt;<br />
&lt;/HEAD&gt;<br />
&lt;BODY&gt;<br />
&lt;table border=&#8221;1&#8243; align=&#8221;center&#8221; cellpadding=&#8221;3&#8243;    cellspacing=&#8221;2&#8243; width=&#8221;60%&#8221; height=&#8221;80%&#8221;&gt;<br />
&lt;caption&gt;Simple Table With Formatting&lt;/caption&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;<br />
Row    1, Col 1<br />
&lt;/td&gt;<br />
&lt;td&gt;<br />
Row    1, Col 2<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;<br />
Row    2, Col 1<br />
&lt;/td&gt;<br />
&lt;td&gt;<br />
Row    2, Col 2<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td    colspan=&#8221;2&#8243; rowspan=&#8221;2&#8243; align=&#8221;center&#8221; valign=&#8221;center&#8221;&gt;<br />
This    is a double-width, double-height cell with centered contents.<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/BODY&gt;<br />
&lt;/HTML&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Images    in HTML document</b><br />
As we learnt earlier, a web page can only store text. So any images that appear    inside the page is not inside the HTML document.Actually the image is a different    file and there is a tag in the HTML page specifying the location of the image.The    browser displays the image in the page as if it were a part of that document.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Image    Formats in a HTML page</b><br />
There are two types of image formats used in web pages.GIF(Graphics Interchangeable    Format &#8220;.gif&#8221;)and JPEG(Joint Photographics Expert Group &#8220;.jpg&#8221;).The    PNG(Portable Network Graphic &#8220;.png&#8221;) format is still consideration    and most probably will be used as web graphic format in the future.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Inserting    image into the HTML page</b><br />
IF you have a JPEG or GIF image you can insert it into HTML page by inserting    the&lt;IMG&gt;tag.Refer to lecture 3 for the properties of the &lt;IMG&gt; tag    looks like:<br />
&lt;IMG src=&#8221;image surce&#8221; width=&#8221;image width&#8221; height=&#8221;image    height&#8221;&gt;<br />
Example &lt;img src=&#8221;images/picture.gif&#8221; width=&#8221;150&#8243; Height=&#8221;30&gt;<br />
The SRC property of the &lt;IMG&gt; tag is must.All other tags are optional.If    you dono&#8217;t specify the width and height property the image dimesion is calculated    automatically.If you don&#8217;t specify the width and height property the image resized    in the browser while displaying. If the width and height property is not specified    then the browser will take a little longer time to display the image as it has    to calculated the values, so it is better to specify them at design time.<br />
Other properties the&lt;IMG&gt; tag are ALT and LOSRC.The ALT property is used    to specify the text that will appear if the image cannot be shown in the page    or when the mouse moves will be loaded before the actual high-resolution image    is loaded .This property is used when low source image instead of a blank page    before the large image appears.<br />
The format will be something like this:<br />
Example:<br />
&lt;IMG src=&#8221;image/picture.gif width=&#8221;150&#8243; height=&#8221;30&#8243;    ALT=&#8221;Home Buttom&#8221; lowsrc=&#8221;images/smalliamge.gif&#8221;&gt;</font></p>
<p align="justify">&nbsp;</p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><a title="forms" name="forms"></a>Forms    in a HTML document</b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><br />
Forms are used in a web page to collect information form the user .Generally    user cannot write or edit a web page in the browser but in a form he can type    and enter data,which can be collect by the web site owner.<br />
For example a from can be used to accept the username and password of a user    to log him onto the system or to take his details for any other purpose.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Tags    for inserting a form</b><br />
A form is inserted into a web page using the &lt;FORM&gt; and&lt;/FORM&gt;tag.All    the elements of a form tag are put between these tags inside the &lt;INPUT &gt;tag.The    Type property of the &lt;INPUT&gt;tag determines the type of form element it    is.For example &lt;INPUT TYPE=&#8221;text&#8221;&gt; will be a text box and &lt;INPUT    TYPE=&#8221;password&#8221;&gt;will be a password box.The &lt;INPUT&gt;Tag doesnot    have a closing tag.<br />
All types of form fields are inserted using the &lt;INPUT&gt;Tag except the    Drop Down and list Box.These are enclosed between &lt;Select&gt; and &lt;/select&gt;tags.The    list items are placed between these tags.Each list item is enclosed between    a pair of &lt;Option&gt; and &lt;/option&gt;tags.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>The    type of elements in a from</b></font></p>
<table bgcolor="#cccccc" border="1" cellpadding="2" cellspacing="1" width="100%">
<tr bgcolor="#66ffff">
<td width="19%">
<div align="left"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>From          Element</b></font></div>
</td>
<td width="23%">
<div align="left"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>&lt;INPUT&gt;Tag          Type</b></font></div>
</td>
<td bgcolor="#66ffff" width="58%">
<div align="left"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Description</b></font></div>
</td>
</tr>
<tr>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Text        Box</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Text</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Field        where the user can enter any text</font></td>
</tr>
<tr>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Password        Box</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Password</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Field        where the user can enter password</font></td>
</tr>
<tr>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Text        Area</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Textarea</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Field        where the user can enter multiple line of text</font></td>
</tr>
<tr>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Check        box</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Checkbox</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Filed        where the user can check one or more of available option</font></td>
</tr>
<tr>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Radio        Button</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Radio</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Filed        where the user can select any one of available option</font></td>
</tr>
<tr>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Button</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Button</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Command        buttton used to enter a command</font></td>
</tr>
<tr>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Submit        Button</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Submit</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Command        button used to submit the form</font></td>
</tr>
<tr>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Reset        Button </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Reset</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Command        button used to reset the form</font></td>
</tr>
<tr>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Drop        Down Box</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2"> </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Filed        where the user can select an item from the drop down menu</font></td>
</tr>
<tr>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">List        Box</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2"> </font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Field        where the user can select one or more items from a list</font></td>
</tr>
</table>
<p align="justify"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Example</font></b></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">here    is a blank web page with only a from</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;HTML&gt;<br />
&lt;HEAD&gt;<br />
&lt;TITLE&gt;Form Page&lt;/TITLE&gt;<br />
&lt;/HEAD&gt;<br />
&lt;BODY&gt;<br />
&lt;form&gt;<br />
Full Name:&lt;INPUT TYPE=&#8221;text&#8221; NAME=&#8221;name&#8221;&gt;&lt;br&gt;<br />
Gender:&lt;INPUT type=&#8221;radio&#8221; name=&#8221;gender&#8221; value=&#8221;male&#8221;&gt;Male&lt;input    type=&#8221;radio&#8221; name=&#8221;Gender&#8221; value=&#8221;female&#8221;&gt;Female&lt;br&gt;<br />
Age Group:&lt;select name =&#8221;age&#8221;&gt;<br />
&lt;option value=&#8221;12&#8243;&gt;12&lt;/option&gt;<br />
&lt;option value=&#8221;13&#8243;&gt;13&lt;/option&gt;<br />
&lt;option value=&#8221;14&#8243;&gt;14&lt;/option&gt;<br />
&lt;option value=&#8221;15&#8243;&gt;15&lt;/option&gt;<br />
&lt;option value=&#8221;16&#8243;&gt;16&lt;/option&gt;<br />
&lt;/select&gt;<br />
&lt;Input type=&#8221;submit&#8221; value=&#8221;submit form&#8221;&lt;input type=&#8221;reset&#8221;    value=&#8221;reset From&#8221;&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</font></p>
<p align="justify"><b>From Elements and their properties</b></p>
<p align="justify"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;FORM&gt;Tag    properties </font></b></p>
<table border="1" cellpadding="0" cellspacing="0" width="62%">
<tr bgcolor="#66ffff">
<td width="38%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Property</b></font></td>
<td width="62%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Value</b></font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">NAME</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Name        of the Form</font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">METHOD</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">How        the form data will be sent(Get or Post)</font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">ACTION</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">The        script or program file that will handle the form data</font></td>
</tr>
</table>
<p align="justify"><b>Text Field/Password Field/File Field</b></p>
<table border="1" cellpadding="0" cellspacing="0" width="62%">
<tr bgcolor="#66ffff">
<td width="38%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Property</b></font></td>
<td width="62%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Value</b></font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">NAME</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Name        of the Field</font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">SIZE</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Width        of field in number of characters</font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000">MAXLENGTH</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Themaximum        number of character allowed (Including space)</font></td>
</tr>
</table>
<p align="justify"><b>Check BOX/Radio Button<font size="2">(INPUT TYPE=&#8221;CHECKBOX&#8221;&gt;&lt;INPUT    TYPE=&#8221;RADIO &#8220;&gt;</font></b></p>
<table border="1" cellpadding="0" cellspacing="0" width="62%">
<tr bgcolor="#66ffff">
<td width="38%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Property</b></font></td>
<td width="62%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Value</b></font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">NAME</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Name        of the check box/radio button</font></td>
</tr>
<tr bgcolor="#cccccc">
<td height="19"><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">VALUE</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Value        to pass when checked</font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">CHECKED</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Doesnot        have a value,the box will appear checked initially </font></td>
</tr>
</table>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>BUTTON    /SUBMIT BUTTON /RESET BUTTON</b></font></p>
<p align="justify"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;input    type=&#8221;button&#8221;&gt;/&lt;input type=&#8221;submit&#8221;&gt;/&lt;input    type &#8220;reset&#8221;&gt;</font></b></p>
<table border="1" cellpadding="0" cellspacing="0" width="62%">
<tr bgcolor="#66ffff">
<td width="38%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Property</b></font></td>
<td width="62%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Value</b></font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">NAME</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Name        of the Button(optional)</font></td>
</tr>
<tr bgcolor="#cccccc">
<td height="19"><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">VALUE</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Text        on the button face</font></td>
</tr>
</table>
<p align="justify">&nbsp;</p>
<p align="justify"><b>Hidden field &lt;input type =&#8221;hidden&#8221;&gt;</b></p>
<table border="1" cellpadding="0" cellspacing="0" width="62%">
<tr bgcolor="#66ffff">
<td width="38%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Property</b></font></td>
<td width="62%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Value</b></font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">NAME</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Name        of the field</font></td>
</tr>
<tr bgcolor="#cccccc">
<td height="19"><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">VALUE</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">value        of pass</font></td>
</tr>
</table>
<p align="justify"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Drop    Down/List Box&lt;select&gt;&lt;option&gt;&lt;/select&gt;</font></b></p>
<p><b>&lt;Select&gt; Tag</b></p>
<table border="1" cellpadding="0" cellspacing="0" width="62%">
<tr bgcolor="#66ffff">
<td width="38%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Property</b></font></td>
<td width="62%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Value</b></font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">NAME</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Name        of the field</font></td>
</tr>
<tr bgcolor="#cccccc">
<td height="19"><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">SIZE</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Number        of lines in the list box .</font></td>
</tr>
</table>
<p align="justify"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;option&gt;Tag    </font></b></p>
<table border="1" cellpadding="0" cellspacing="0" width="62%">
<tr bgcolor="#66ffff">
<td width="38%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Property</b></font></td>
<td width="62%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Value</b></font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">VALUE</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Value        to be passed when selected</font></td>
</tr>
<tr bgcolor="#cccccc">
<td height="19"><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">SELECTED</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Doesnot        have a value,appears selected initially</font></td>
</tr>
</table>
<p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Text Area&lt;textarea&gt;&lt;/textarea&gt;</b></font></p>
<table border="1" cellpadding="0" cellspacing="0" width="62%">
<tr bgcolor="#66ffff">
<td width="38%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Property</b></font></td>
<td width="62%"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>Value</b></font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">NAME</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Name        of the field</font></td>
</tr>
<tr bgcolor="#cccccc">
<td height="19"><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">ROWS</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Height        of the field in number of line</font></td>
</tr>
<tr bgcolor="#cccccc">
<td height="19"><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">COLS</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Width        of the field in number of characters</font></td>
</tr>
<tr bgcolor="#cccccc">
<td height="19"><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">WRAP</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Type        of text wrapping[off,virtual or physical]</font></td>
</tr>
</table>
<p align="justify"><b><a title="frame" name="frame"></a>Frame</b></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Until now wach web page when opend takes over    the entire browser screen.The browser screen could not be split into separate(unique)    sections,showing different but related information.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The HTML tags that divide a browser screen into    two or more HTML recognizable unique region is the &lt;FRAMESET&gt;&lt;/FRAMESET&gt;    tags.Each unique region is called a frame.Each frame can be loaded with a different    document and hence,allow multiple HTML documents to be seen concurrently.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The HTML frame is a powerful feature that enables    a web page to be broken into different unique section that,although realated    ,operate independently of each other.</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>The    &lt;FRAMESET&gt; Tag</b></font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The spliting of a browser screen into frames    is accomplished with the &lt;FRAMESET&gt; and &lt;/FRAMESET&gt; tags embedded    into the HTML document .The &lt;FRAMESET&gt;&lt;/FRAMESET&gt;tags require one    of the following two attributes depending on whethher the screen has to be divided    into rows and columns.</font></p>
<table border="1" cellpadding="2" cellspacing="0" width="100%">
<tr valign="top">
<td width="25%"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">ROWS</font></td>
<td width="75%"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">This        attribute is used to divide the screen into multiple rows.It can be set        equal to a list of values.Depending on the require size of each row.The        values can number of pixel,percentage of screen resolution and the symbol        of * which indicates the remaining space of the screen</font></td>
</tr>
<tr valign="top">
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="2">COLS</font></td>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="2">This attribute        is used to divide the screen into multiple columns.It can be set equal to        a list of values.Depending on the require size of each Columns..The values        can number of pixel,percentage of screen resolution and the symbol of *        which indicates the remaining space of the screen</font></td>
</tr>
</table>
<p align="justify"><b>Example</b></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;FRAMESET    ROWS=&#8221;33%,33%,33%&gt;</font></p>
<p align="justify"> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">            &lt;FRAMESET    COLS=&#8221;50 %,50%&#8221;&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">             &lt;/FRAMESET&gt;</font></p>
<p align="justify"> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">             &lt;FRAMESET    COLS=&#8221;50%,50%&#8221;&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">             &lt;/FRAMESET&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/FRAMESET&gt;</font></p>
<p align="justify"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">The &lt;FRAME&gt; Tag</font></b></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Once the browser screen is divided into rows(Horizontal    sections)and columns (Vertical Sections),Each unique section defined can be    loaded with different HTML documents.This is achieved by using the &lt;FRAME&gt;tag,which    takes in the following attributes :</font></p>
<table border="1" cellpadding="2" cellspacing="0" width="100%">
<tr bgcolor="#66ffff">
<td width="24%"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Propery</font></b></td>
<td width="76%"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Value</font></b></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">SRC</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Indicates        the URL of the document to be loaded into the frame.</font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">MARGINHEIGHT</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Specifies        the amount the amount of white space to be left at top and bottom of the        frame</font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">MARGINWIDTH</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Specified        the amount of white space to be along the sides of the frame</font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">NAME</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Gives        the frame a unique name so it can be targeted by other documents.The name        given must begin with an Alphanumeric character.</font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">NORSIZE</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Disables        the frames resizing capability</font></td>
</tr>
<tr bgcolor="#cccccc">
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">SCROLLING</font></td>
<td><font color="#990000" face="Verdana, Arial, Helvetica, sans-serif" size="2">Controls        the appearance of horizontall and vertical scrollbars in a frame.This takes        the values YES/NO/AUTO</font></td>
</tr>
</table>
<p align="justify"><b>Example<br />
<font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;</font></b><font face="Verdana, Arial, Helvetica, sans-serif" size="2">FRAMESET    ROWS=&#8221;30%,*&#8221;&gt;</font></p>
<p align="justify"> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">               &lt;FRAMESET    COLS=&#8221;50%,50%&#8221;&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">                         &lt;FRAME    src=&#8221;file1.htm&#8221;&gt;</font></p>
<p align="justify"> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">                         &lt;FRAME    src=&#8221;file2.htm&#8221;&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">                &lt;/FRAMESET&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">               &lt;FRAMESET    COLS=&#8221;50%,50%&#8221;&gt;</font></p>
<p align="justify"> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">                         &lt;FRAME    src=&#8221;file3,htm&#8221;&gt;</font></p>
<p align="justify"> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">                         &lt;FRAME    src=&#8221;file4.htm&#8221;&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">                 &lt;/FRAMESET&gt;</font></p>
<p align="justify"><font face="Verdana, Arial, Helvetica, sans-serif" size="2">&lt;/FRAMESET&gt;</font></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/onlinemal.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/onlinemal.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onlinemal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onlinemal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onlinemal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onlinemal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onlinemal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onlinemal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onlinemal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onlinemal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onlinemal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onlinemal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onlinemal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onlinemal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onlinemal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onlinemal.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onlinemal.wordpress.com&amp;blog=3044106&amp;post=3&amp;subd=onlinemal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onlinemal.wordpress.com/2008/03/03/how-to-create-web-page-on-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f77a444800a786c5420d1540aa0cd1bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tenpa</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://onlinemal.wordpress.com/2008/03/03/hello-world/</link>
		<comments>http://onlinemal.wordpress.com/2008/03/03/hello-world/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 07:47:20 +0000</pubDate>
		<dc:creator>tenpa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onlinemal.wordpress.com&amp;blog=3044106&amp;post=1&amp;subd=onlinemal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/onlinemal.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/onlinemal.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onlinemal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onlinemal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onlinemal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onlinemal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onlinemal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onlinemal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onlinemal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onlinemal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onlinemal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onlinemal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onlinemal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onlinemal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onlinemal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onlinemal.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onlinemal.wordpress.com&amp;blog=3044106&amp;post=1&amp;subd=onlinemal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onlinemal.wordpress.com/2008/03/03/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f77a444800a786c5420d1540aa0cd1bf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tenpa</media:title>
		</media:content>
	</item>
	</channel>
</rss>
