Introduction to Dreamweaver CS3

Size: px
Start display at page:

Download "Introduction to Dreamweaver CS3"

Transcription

1 TUTORIAL 2 Introduction to Dreamweaver CS3 In Tutorial 2 you will create a sample site while you practice the following skills with Adobe Dreamweaver CS3: Creating pages based on a built-in CSS page layout Formatting text and color using styles Inserting images Configuring a list Creating hyperlinks Configuring a table The site is for a small vacation cabin rental company called MooseWood Cabins and has three pages as indicated in the site map shown in Figure T2.1. The pages are as follows: index.html (Figure T2.2), cabins.html (Figure T2.3), and reservations.html (Figure T2.4). Figure T2.1 MooseWood Cabins site map T-27

2 T-28 Tutorial 2 Introduction to Dreamweaver CS3 Figure T2.2 MooseWood Cabins index.html Figure T2.3 MooseWood Cabins cabins.html

3 T2.1 Creating a New Dreamweaver Site T-29 Figure T2.4 MooseWood Cabins reservations.html T2.1 Creating a New Dreamweaver Site Tutorial 1 introduced you to creating a new Dreamweaver site. Launch Dreamweaver and define a new site named MooseWood that is located in a folder named moosewood. (Hint: Use the menu bar and select Site Manage Sites.) This should be a review. Creating a Page Now that your MooseWood site is defined, you are ready to create Web pages. In this tutorial you will use a new feature in Dreamweaver to create Web pages based on a built-in CSS page layout. Use the menu bar and select File New to open the New Document dialog box, as shown in Figure T2.5. Select Blank Page HTML 2 column fixed, left sidebar, header and footer. The Doc Type should be set to XHTML 1.0 Transitional. Verify that the Layout CSS option indicates Create New File. This will create an external style sheet that contains the style rules for the page layout. Click the Create button. The Save Style Sheet File As dialog box displays, as shown in Figure T2.6. Verify that the file is being saved in the moosewood folder and name the file moosewood.css. Click Save. A Web page document with a file named untitled-1 displays in the Document window. The document shown in Figure T2.7 contains sample content and uses the CSS page layout you selected in the New Document dialog box. As you create your MooseWood Cabins home page during this tutorial, you ll use this document as a shell replacing the content, adding images, modifying background colors, and configuring text alignment and size. Save the file in your moosewood folder with the name of index.html. (Hint: Use the menu bar, File Save As.)

4 T-30 Tutorial 2 Introduction to Dreamweaver CS3 Figure T2.5 The New Document dialog box Figure T2.6 Save the external style sheet as moosewood.css

5 T2.2 Using Images in Dreamweaver T-31 Figure T2.7 Sample content uses the CSS page layout you selected T2.2 Using Images in Dreamweaver Adding Images to a Site The images used in this tutorial can be found in the student files ( or Copy the files mwlogo.gif (Figure T2.8), home.gif (Figure T2.9), cabins.gif (Figure T2.10), reservations.gif (Figure T2.11), moosewood.jpg (Figure T2.12), mooselake.jpg (Figure T2.13), mooselakesmall.jpg (Figure T2.14), and exterior.jpg (Figure T2.15). Save the files in the moosewood folder. Figure T2.8 mwlogo.gif Figure T2.9 home.gif Figure T2.10 cabins.gif Figure T2.11 reservations.gif

6 T-32 Tutorial 2 Introduction to Dreamweaver CS3 Figure T2.12 moosewood.jpg Figure T2.13 mooselake.jpg Figure T2.14 mooselakesmall.jpg Figure T2.15 exterior.jpg Examine the Files panel for your MooseWood Cabins site. The display should look similar to the sample shown in Figure T2.16. It shows the index.html file and the images for your site. Figure T2.16 The Site panel lists the index.html file and the images Wouldn t a quick visual preview of the images be nice? The Files panel also contains an Assets panel. Display the Assets panel by clicking its tab. Is your Assets panel blank? Click the Images button, as shown in Figure T2.17. Your images should now appear in the Assets panel, as shown in Figure T2.18.

7 T2.2 Using Images in Dreamweaver T-33 Figure T2.17 Selecting to display images in the Assets panel Figure T2.18 The Assets panel Take a moment and click each image name to display its thumbnail image in the Assets panel. It s a good idea to organize your site by placing images and other media into individual folders. Create a new folder called media in your moosewood site. You can use the Files panel for this task. See the View Options icon shown in Figure T2.19. Click this to display a menu of options. Select File New Folder. An untitled folder is added to the site. Rename the folder media and drag each image file to it. When you are done, your local folder list will look similar to the example shown in Figure T2.20. Figure T2.19 Click the View Options icon to display a menu of options Figure T2.20 All the images are now in the media folder Now that you ve got all the images for the site, let s start creating the pages for the MooseWood Cabins site.

8 T-34 Tutorial 2 Introduction to Dreamweaver CS3 Working with Images and Dreamweaver Let s continue to work with Dreamweaver and build the home page for the MooseWood Cabins site. View the sample page shown in Figure T2.2 to see what you will be creating. It looks quite different than the current index.html (Figure T2.7). In previous steps, you created the MooseWood site and added images to it. Your index.html file may still be open in the Document window. If it is not, use the Files panel and double-click the index.html file to display it in the Document window. Configure the page title to be MooseWood Cabins. This should be a review from Tutorial 1. Next, you will add the logo to the page header area. There are a number of ways to insert an image in Dreamweaver. Whichever method you choose, Dreamweaver writes the XHTML for you. The easiest way is to drag the image directly from the Assets panel. Display the Assets panel (_ is the shortcut key) and drag the mwlogo.gif file from the Assets panel to your Document window. Drag the cursor directly in front of the Header text. A second method is to use the menu bar and select Insert Image (see Figure T2.21) to display the Select Image Source dialog box. See Figure T2.22. Then navigate to the media folder and select the mwlogo.gif file. Click OK. Figure T2.21 Using the menu bar to insert an image Figure T2.22 Navigate to your image and click OK

9 T2.2 Using Images in Dreamweaver T-35 A third method is to use the Insert bar (see Figure T1.9 in Tutorial 1) and select the Common category. No matter which method you choose to add the image, Dreamweaver will write the XHTML for you. Next, Dreamweaver will display the Image Tag Accessibility Attributes dialog box to prompt you for the text description of the image. See Figure T2.23. Figure T2.23 Provide accessibility by configuring a text description Notice the Alternate text drop-down box. This configures a text description that can be read by a screen reader, displayed before the image loads, or displayed if images are turned off in the browser. This is one of the accessibility features included in Dreamweaver CS3. Click in the Alternate text area and type MooseWood Cabins. Then click OK. The logo should now be placed on your Web page. Your home page should look similar to the sample shown in Figure T2.24. You ve probably noticed the unnecessary Header text. To remove this text use either the mouse or the arrow keys to highlight the text and press the d key. Save your page by selecting File Save. Figure T2.25 depicts the home page with logo and page title. Figure T2.24 The image has been added to the page

10 T-36 Tutorial 2 Introduction to Dreamweaver CS3 Figure T2.25 The index.html page with page title and logo image Once an image is on a page you can move it and resize it. You also can modify the image properties such as alignment and alternate text using the Property inspector. (Hint: Select Window Properties or press +# to display the Property inspector if it is not visible.) A sample Property inspector is shown in Figure T2.26. Figure T2.26 The Property inspector can configure an image Adding More Images to the Page Refer to the sample index.html page (Figure T2.2) and add the home.gif, cabins.gif, and reservations.gif to the page above the Sidebar 1 Content text. Press e after the reservations.gif. Be sure to configure each with appropriate alternate text. They will be used later as image links. Your page should now look similar to the sample shown in Figure T2.27. By now you should be comfortable with using Dreamweaver to add images to a Web page. The next sections discuss text and image links, configuring the built-in CSS page layout, more text formatting, copyright symbols, and links.

11 T2.3 Creating Hyperlinks with Dreamweaver T-37 Figure T2.27 The index.html page with additional images T2.3 Creating Hyperlinks with Dreamweaver Let s continue to work on the home page of the MooseWood Cabins site and create the hyperlinks for the navigation bar. You will configure the home.gif to link to index.html, the cabins.gif to link to cabins.html, and the reservations.gif to link to reservations.html. Click once on the home.gif to select it. If the Property inspector is not visible, display it by selecting Windows Properties or by pressing the +# keys. Configure the hyperlink to the index.html page. Using the Property inspector, type index.html in the Link text box to create the hyperlink. See Figure T2.28. (Note: If Dreamweaver adds a border to your image hyperlink, use the Property inspector and set the border to 0.) Figure T2.28 Using the Property inspector to configure a hyperlink Another way to configure a hyperlink is to use the menu bar. Click once on reservations.gif to select it. Using the menu bar, select Modify Make Link to display the Select File dialog box, as shown in Figure T2.29. Type reservations.html in the File name text box and click OK. Configure the cabins.gif hyperlink using your choice of these methods. Save your index.html page.

12 T-38 Tutorial 2 Introduction to Dreamweaver CS3 Figure T2.29 The Select File dialog box used to create a hyperlink Text hyperlinks are created similarly. You highlight the text to be the hyperlink and either modify the property inspector or select Modify Make Link from the menu bar. You will create text hyperlinks later in this tutorial as you add more content to the home page. T2.4 Configuring the Built-In CSS Page Layout In this section you will begin to configure the built-in CSS page layout you chose when you created the index.html page. Although you can edit the CSS directly in Code View, in this tutorial you will use the CSS panel. Look in the right-hand panel area for the CSS panel. If the CSS panel is not visible in your Dreamweaver workspace, use the menu bar to select Window CSS Styles to display the panel. Configure the Page Background Let s start by using the CSS panel to configure the background color for the page. As shown in Figure T2.30, verify the All button is selected and click on body to select styles applied to the body HTML element. Next, select the small pencil icon in the lower left-hand corner of the CSS panel to display the CSS Rule Definition dialog box displayed in Figure T2.31. Verify that the Background category is selected. Change the value of the Background color property from # to # Select OK.

13 T2.4 Configuring the Built-In CSS Page Layout T-39 Figure T2.30 The All button makes all styles available to you Figure T2.31 Using CSS to configure the Web page background color Configure the Page Areas The built-in CSS page layout is organized by divisions that each have been assigned to an id. See Figure T2.32 for a display of the finished page with the most important ids and their background colors labeled. You will use the CSS panel to configure these areas.

14 T-40 Tutorial 2 Introduction to Dreamweaver 8 Figure T2.32 CSS configures various areas on the page The Header Area Use the CSS panel to configure the background color for the header id. As shown in Figure T2.33, verify the All button is selected and click on the line that contains the header id (#header) to select styles applied to this area. Next, select the small pencil icon in the lower left-hand corner of the CSS panel to display the CSS Rule Definition dialog box. Verify that the Background category is selected. Change the value of the Background color property from #DDDDDD to #CDBC73. Select OK. Figure T2.33 Select the #header for configuration

15 T2.4 Configuring the Built-In CSS Page Layout T-41 The Container Area In a similar manner, use the CSS panel to configure the background color for the container id to be #F5F5DC. The Sidebar1 Area Use the CSS panel to configure both the background color and the font size for this area. Begin by selecting the Background category and set the background color to #F0E68C but click the Apply button instead of OK. Next, select the Type category and set the font size to small as shown in Figure T2.34. Select OK. Figure T2.34 The Type category configures the font properties The Footer Area Use the CSS panel to configure the background color, font size, and text alignment for the footer area. Begin by selecting the Background category and set the background color to #CDBC73. Select Apply. Next, select the Type category and configure the font size to be small. Select Apply. Finally, select the Block category and set the Text align to center as shown in Figure T2.35. Select OK. The maincontent Area Use the CSS panel to modify the padding at the top of this area. Begin by selecting the Box category and set the Top Padding to 10 pixels as shown in Figure T2.36. Select OK. Save your index.html file. See Figure T2.37 for a screen capture of the home page at this point. You probably have noticed that your page has begun to look more like the sample in Figure T2.2! In the next section you ll begin to really see the page take shape as you add content.

16 T-42 Tutorial 2 Introduction to Dreamweaver 8 Figure T2.35 The Block category configures spacing and alignment properties Figure T2.36 The Box category configures margins and padding

17 T2.5 Adding Content to the Home Page T-43 Figure T2.37 Your home page with the background color and text properties configured T2.5 Adding Content to the Home Page As indicated on the sample home page (Figure T2.2), you need to add an image of a wooded area and some text that describes the amenities of the cabins and surrounding vicinity. With index.html displayed in the Document window, highlight the Main Content text and replace it with: Romantic Country Retreat Highlight the paragraph that begins with Lorem ipsum and delete it. Type the following text, pressing e after each line: Private cabins with fireplaces Hiking, Biking, Fishing Type the following text, pressing the s+e keys after each line. This key combination causes Dreamweaver to code a line break tag. MooseWood Cabins 4000 County Rd 137 Type the following text and press the e key after each line. Moose Lake, MN Enjoy nature in style! Format the MooseWood Cabins text you just added to the page to display in bold font. Highlight the text to select it. Click the B button on the Property inspector as shown in Figure T2.38.

18 T-44 Tutorial 2 Introduction to Dreamweaver 8 Add the moosewood.jpg image to the page and place it to the left of the P in Private. (Hint: Drag the image from the Assets panel or use the Insert bar, Common tab, Image button.) See the sample shown in Figure T2.39. Figure T2.38 Use the Property inspector to configure bold font Figure T2.39 Adding the photo to index.html

19 T2.5 Adding Content to the Home Page T-45 If you re thinking this isn t exactly like the sample, you re correct. There is still more to do. Use the Property inspector to configure the image to be left-aligned. Modify the Align list box to display Left, as shown in Figure T2.40. If your Property inspector does not show the Align list box, click the white triangle at the lower-right corner to show more properties. If the image seems to crowd the text, use the Property inspector and change the H Space (horizontal spacing) to 10. Remember to configure alternate text. Figure T2.40 Setting the image alignment Next, delete the H2 level heading and the paragraph below. Save your index.html file. Test your page in a browser. Your page should look similar to the sample shown in Figure T2.41. Figure T2.41 The index.html page after the photo has been aligned with the text Configuring the Sidebar Highlight the Sidebar1 Content text and replace it with MooseWood Events. Delete the two paragraphs in the sidebar. Type the following text: Join our daily activities: Press the e key.

20 T-46 Tutorial 2 Introduction to Dreamweaver 8 Type the following text, pressing the e key after each line. Guided Nature Walks Birding Expeditions Kayak Tours Sunrise Fishing Trip Press the e key twice to add some empty space at the bottom of the sidebar area. If you compare your page to the sample shown in Figure T2.2, you ll notice that the phrases describing the activities should be in an unordered list. To create an unordered list, highlight the four lines of text describing the activities and select the Unordered List button on the Property inspector (see Figure T2.42). Figure T2.42 The Unordered List button Save the index.html file. Your page should look similar to Figure T2.43. Figure T2.43 The sidebar contains navigation links, a heading, and an unordered list Adding the Page Footer Now you are ready to create the text navigation bar for the home page (see Figure T2.2). Place the cursor on a new line under the content and type the following text:

21 T2.5 Adding Content to the Home Page T-47 Home Cabins Reservations Press the e key. Now configure a text navigation bar by creating hyperlinks. Highlight the Home text and use the Property inspector to create a hyperlink to the index.html page. Also configure a hyperlink from the Cabins text to the cabins.html page and from the Reservations text to the reservations.html page. The copyright, last date updated, and e- mail information should be added to the bottom (footer) of the page. Adding the Copyright Symbol Place your cursor on a blank line under the text navigation bar. Type Copyright. Use the menu bar to add the copyright symbol. Select Insert HTML Special Characters Copyright. See Figure T2.44. Figure T2.44 Finding the copyright symbol After inserting the copyright symbol, type the year and your name. Press s+e to move directly to the next line. Adding the Date Last Updated Type Last Updated: and configure Dreamweaver to generate the date automatically. Select the Common tab on the toolbar, and click the Date button, as shown in Figure T2.45. Figure T2.45 Using the Common tab on the Insert bar to add a date

22 T-48 Tutorial 2 Introduction to Dreamweaver 8 The Insert Date dialog box will display, as shown in Figure T2.46. (Note: You could also use the menu bar and select Insert Date to display the Insert Date dialog box.) Select the type of date format you prefer. Check the Update automatically on save box and Dreamweaver will modify this date each time you update the file. Click OK. Figure T2.46 The Insert Date dialog box Adding the Link Now create the line that will contain the link. Press s+e to move directly to the next line without leaving a blank line. Type Questions? . Using the insert bar, select the Common tab and click the Link button to display the Link dialog box (Figure T2.47). (Note: You could also use the menu bar and select Insert Link to display the Link dialog box.) Figure T2.47 The Link dialog box This dialog box allows you to configure both the text to display for the link and the actual address. Type webdevfoundations@hotmail.com or your own address in both the Text and text box values. Click OK. The bottom portion of your index.html should look similar to the sample shown in Figure T2.48. Figure T2.48 Sample page footer

23 T2.5 Adding Content to the Home Page T-49 Select File Save All to save both your index.html and moosewood.css files. The tutorial continues as you create the cabins.html and reservations.html pages. Adding Pages to the Dreamweaver Site There are a few methods that can be used to add a page to a Dreamweaver site. In the Files panel (* is the shortcut key), select File New File. In the Files panel, right-click the window, and select New File from the pop-up menu. In the menu bar select File New Basic Page OK. However, we are going to create new pages with many of the same characteristics as the home page (index.html). One way to be productive is to display the index.html file in the document window, select File Save As, and save the file with the name of one of the other pages. So let s save a copy of the index.html page with the file name of cabins.html. Display the index.html file in the Document window. Select File Save As, type cabins.html as the file name and click Save. See Figure T2.49. Figure T2.49 Using the Save As dialog box The Document window now displays the cabins.html page, as shown in Figure T2.50.

24 T-50 Tutorial 2 Introduction to Dreamweaver 8 Figure T2.50 cabins.html This is a great time to change the page title to a more descriptive phrase. Either modify the page title directly in the Document toolbar or use the menu bar and select Modify Page Properties. Change the title to MooseWood Cabins :: Country Cabin Rentals. Save the cabins.html file. View the Files panel (see Figure T2.51) and notice that there is a new entry for cabins.html. Figure T2.51 The new cabins.html file is listed in the Site panel T2.6 Adding Content to the Cabins Page View the sample Cabins page (Figure T2.3) to see what the page will look like. Notice that the page header, sidebar, and page footer portions are similar to the home page. You will be changing the content the middle portion of the page.

25 T2.6 Adding Content to the Cabins Page T-51 Replace the text Romantic Country Retreat with Cozy, Warm, and Inviting Delete the moosewood.jpg and the text from the middle part of the Web page, leaving just the page header, sidebar, and footer information. (Hint: To delete an image or text, select the item by highlighting it and then press.) Type the following text (press e where indicated): Our cabins are tucked away in the woods with a view that overlooks Moose Lake. (Press e) Each cabin has all the comforts of home: a great room with a fireplace and satellite TV, modern kitchen, three bedrooms, two baths, and a gas grill. (Press e) Save the cabins.html file. Your page should look similar to the one shown in Figure T2.52. Figure T2.52 Adding content to cabins.htm Next, add the mooselake.jpg image to the page. Drag the image to the page from the Assets panel and place it to the left of the O in Our cabins. Type Moose Lake for the text description in the Image Tag Accessibility dialog box. Use the Property inspector to configure the image to be right-aligned with H Space set to 10. Add an alternate text description for the image. Your page should look similar to the one shown in Figure T2.53.

26 T-52 Tutorial 2 Introduction to Dreamweaver 8 FAQ Figure T2.53 The mooselake.jpg is left-aligned with the first paragraph of text So far, you ve used the technique to save a Web page file with a new name to increase productivity. The tutorial continues as you create the Reservations page and gain experience using tables in Dreamweaver. What about Dreamweaver Templates? Another method used to create additional pages for your site is to save a copy of the index.html page as a template by selecting File Save As Template from the menu bar. To create new pages based on this template, you could use the menu bar and select File New, and then use the Templates tab on the New Document dialog box to choose the template. Using one or more templates can be a great productivity aid on a large site. Experiment with this feature if you are interested. T2.7 Using Tables in Dreamweaver Using a Table on the Reservations Page Use the Save As technique to create the foundation for the reservations.html page. Display the cabins.html file in the Document window and save it as reservations.html. The Document window now displays the reservations.html file. View the sample Reservations page shown in Figure T2.4. The header, side bar, and footer portions are similar to the other pages on the site. The middle portion the content is different. The content on the Reservations page contains a table. Let s get to work on the page.

27 T2.7 Using Tables in Dreamweaver T-53 Change the title of the page to MooseWood Cabins :: Reservations. Replace the text Cozy, Warm, and Inviting with Reservations & Rates Delete the image and text in the middle portion of the Web page, leaving just the header, sidebar, and footer information. You will use Dreamweaver to create a table on the page. Place your cursor on a blank line under Reservations & Rates. There are two ways to add a table to a Web page using Dreamweaver. The method shown in Figure T2.54 is to use the menu bar and select Insert Table. Another method shown in Figure T2.55 is to use the Insert bar. Select the Common category, and click the Table icon. Figure T2.54 Using the menu bar to insert a table Figure T2.55 Using the Insert bar to insert a table Whichever technique you use, the Table dialog box shown in Figure T2.56 will display. This dialog box configures table properties, including the number of rows and columns, border, and width. Set the properties so that the table has four rows, three columns, a width of 410 pixels, a 1 pixel border, cell padding set to 5, and a Top Header. Figure T2.56 The Insert Table dialog box

28 www T-54 Tutorial 2 Introduction to Dreamweaver 8 Configure the Summary as follows: The table lists cabins, weekly rental rates, and special features. Read across the rows for information on each cabin. The table width should be pixels. When you are ready, click OK. Your page should look similar to the one shown in Figure T2.57. Figure T2.57 The reservations.html page with a three-column table The heavy lines mean the table currently is selected. The light lines separate the columns. If you click in the table, you can add text or other content to your page. The thin green lines above the table with the notation of 410 indicate that the table width is taking up 410 pixels. Don t worry, none of the green lines will show when visitors use your page. Save the reservations.html file. Press ' to display the page in a browser to verify. Use Figure T2.58 as a guide and type text in the table. Your page should look similar to the one shown in Figure T2.58. You will notice that it still needs some work. Figure T2.58 The reservations.html page with text entered in the table

29 T2.7 Using Tables in Dreamweaver T-55 Now let s concentrate on formatting the table and table cells. Select the table by using one of the following methods: Place your cursor on the border of the table and click to place heavy lines around the table and select it. Place your cursor anywhere inside the table. Use the menu bar and select Modify Table Select Table. Place your cursor anywhere inside the table. Click the <table> tag in the Tag Selector (Figure T2.59) in the bottom of the Document window to select the table. Right-click the table to display a context-sensitive menu. Choose Table Select Table. Figure T2.59 Using the tag selector Whichever method you chose, the table should now be selected and the Property inspector should look similar to that shown in Figure T2.60. Notice that the Property inspector is dynamic it looks different for each object it is used with. In the display in Figure T2.60, the most common table tag attributes are ready to be configured. Verify that the width is set to 410 pixels, the border is set to 1, and the cell padding is set to 5. Figure T2.60 Using the Property inspector to configure a table Dreamweaver also allows you to configure each table cell separately. Many options, including alignment, row span and column span, width, and border can be configured. You will configure the weekly rental rates to be centered. Click in the table cell in the second row and second column. The Property inspector should look similar to that shown in Figure T2.61. Figure T2.61 Using the Property inspector to examine the properties of a table cell (<td>)

30 T-56 Tutorial 2 Introduction to Dreamweaver 8 Notice the properties specific to cells that are displayed in the lower half of the Property inspector. Modify this so that the horizontal alignment (Horz) is set to Center. Change the horizontal alignment of the remaining two cells in the second column in the same manner. Your page should look similar to the one shown in Figure T2.62. Figure T2.62 The reservations.html page with the table configured Next, you will add the contact information below the table. Position your cursor on the Web page on a line below the table. Type the following text: Reservations: Press the s+e key to move to the next line. Type followed by an link for rates@moosewoodcabins.com. (Hint: refer to Figure T2.47.) Highlight both lines of text and bold them by selecting the Bold button in the Property inspector. Save your reservations.html page. Congratulations, you ve created your first Dreamweaver site using text formatting, images, hyperlinks, a list, and a table! Preview your Web pages in a browser (' is the shortcut key) and test linking back and forth between them. If any of your links don t work or your images are broken, display the Web page in the Document window and verify that your file and image names are correct. Modify, save, and retest the pages if necessary. Exploring Tables in Dreamweaver Summary In this tutorial you learned how to use Dreamweaver to insert images and hyperlinks, lists, and tables. A quick guide to common Dreamweaver tasks is shown in Table T2.1. You should not expect to be a Dreamweaver guru after completing two tutorials. The best way to become comfortable with Dreamweaver (or any software application) is to practice and use it. Try offering your Web development services to friends, family members, and/or coworkers. You will benefit by having a real client to deal with. The other party will benefit from a new site. It s a win-win situation. You have completed Adobe Dreamweaver Tutorial 2!

31 Summary T-57 Table T2.1 Dreamweaver Quick Guide Task New Dreamweaver site Initial Steps Use Windows Explorer (or the operating system) to create a folder for the site. Using the menu bar, select Site Manage Sites New, etc. The following tasks should be done within a Dreamweaver site New page In the menu bar, select File New or in the Files panel, select File New File All tasks below should be done with a Web page displayed in the Document window Change page properties Format text Add a copyright symbol Add an image Add a hyperlink Create a list Create a table Select Modify Page Properties from the menu bar Highlight text and use the Property inspector Use the Insert Bar Text category and select the copyright symbol or use the menu bar and select Insert HTML Special Characters Copyright Copy the image file to your site (use Windows Explorer or FTP); then select Insert Image from the menu bar or open the Assets panel, select the Images button, Refresh button, and drag the image to your page or use the menu bar and select Insert Image Highlight the text or image to be the hyperlink; modify the Link text box in the Property inspector Type the text; press e after each line; highlight the text; click the Ordered List button or Unordered List button in the Property inspector Place the cursor on the Web page where the table should be located; use the menu bar and select Insert Table, then choose options and click OK

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS3 to create a simple page layout. However, a more powerful technique is to use Cascading Style Sheets (CSS).

More information

ORB Education Quality Teaching Resources

ORB Education Quality Teaching Resources These basic resources aim to keep things simple and avoid HTML and CSS completely, whilst helping familiarise students with what can be a daunting interface. The final websites will not demonstrate best

More information

Web Publishing Basics II

Web Publishing Basics II Web Publishing Basics II Jeff Pankin Information Services and Technology Table of Contents Course Objectives... 2 Create a Site Definition... 3 The Dreamweaver CS4 Interface... 4 Panels are groups of icons

More information

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets Dreamweaver Basics Planning your website Organize site structure Plan site design & navigation Gather your assets Creating your website Dreamweaver workspace Define a site Create a web page Linking Manually

More information

Taking Fireworks Template and Applying it to Dreamweaver

Taking Fireworks Template and Applying it to Dreamweaver Taking Fireworks Template and Applying it to Dreamweaver Part 1: Define a New Site in Dreamweaver The first step to creating a site in Dreamweaver CS4 is to Define a New Site. The object is to recreate

More information

< building websites with dreamweaver mx >

< building websites with dreamweaver mx > < building websites with dreamweaver mx > < plano isd instructional technology department > < copyright = 2002 > < building websites with dreamweaver mx > Dreamweaver MX is a powerful Web authoring tool.

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

How to lay out a web page with CSS

How to lay out a web page with CSS Activity 2.6 guide How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS4 to create a simple page layout. However, a more powerful technique is to use Cascading Style

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

CS Multimedia and Communications. Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3)

CS Multimedia and Communications. Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3) CS 1033 Multimedia and Communications Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3) REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Table Properties Reference Guide The Property

More information

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links Using Dreamweaver CC 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

How to set up a local root folder and site structure

How to set up a local root folder and site structure Activity 2.1 guide How to set up a local root folder and site structure The first thing to do when creating a new website with Adobe Dreamweaver CS3 is to define a site and identify a root folder where

More information

Using Dreamweaver. 4 Creating a Template. Logo. Page Heading. Home About Us Gallery Ordering Contact Us Links. Page content in this area

Using Dreamweaver. 4 Creating a Template. Logo. Page Heading. Home About Us Gallery Ordering Contact Us Links. Page content in this area 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan that is shown below. Logo Page Heading

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS A CSS page layout uses the Cascading Style Sheets format, rather than traditional HTML tables or frames, to organize the content on a web page. The basic building block

More information

Adobe Dreamweaver CS5 Tutorial

Adobe Dreamweaver CS5 Tutorial Adobe Dreamweaver CS5 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

Dreamweaver 101. Here s the desktop icon for Dreamweaver CS5: Click it open. From the top menu options, choose Site and New Site

Dreamweaver 101. Here s the desktop icon for Dreamweaver CS5: Click it open. From the top menu options, choose Site and New Site Dreamweaver 101 First step: For your first time out, create a folder on your desktop to contain all of your DW pages and assets (images, audio files, etc.). Name it. For demonstration, I ll name mine dw_magic.

More information

Dreamweaver Basics Outline

Dreamweaver Basics Outline Dreamweaver Basics Outline The Interface Toolbar Status Bar Property Inspector Insert Toolbar Right Palette Modify Page Properties File Structure Define Site Building Our Webpage Working with Tables Working

More information

Dreamweaver 8. Project 5. Templates and Style Sheets

Dreamweaver 8. Project 5. Templates and Style Sheets Dreamweaver 8 Project 5 Templates and Style Sheets Starting Dreamweaver and Opening the Colorado Parks Web Site Click the Start button on the Windows taskbar Point to All Programs on the Start menu, point

More information

Unit 8. Lesson 8.1. Microsoft FrontPage. Introduction. Microsoft FrontPage-1. Microsoft FrontPage

Unit 8. Lesson 8.1. Microsoft FrontPage. Introduction. Microsoft FrontPage-1. Microsoft FrontPage Microsoft FrontPage Unit 8 Microsoft FrontPage Introduction Lesson 8.1 Microsoft FrontPage-1 A number of Software Packages are available in market for creating a website. Among popular software s are Dreamweaver,

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

Dreamweaver CS3 Lab 2

Dreamweaver CS3 Lab 2 Dreamweaver CS3 Lab 2 Using an External Style Sheet in Dreamweaver Creating the site definition First, we'll set up the site and define it so that Dreamweaver understands the site structure for your project.

More information

Project 1: Creating a Web Site from Scratch. Skills and Tools: Use Expression Web tools to create a Web site

Project 1: Creating a Web Site from Scratch. Skills and Tools: Use Expression Web tools to create a Web site E00EW3.qxp 4/14/2007 3:17 PM Page 1 Workshops w Introduction The Workshop is all about being creative and thinking outside of the box. These workshops will help your right-brain soar, while making your

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

Figure 1 Properties panel, HTML mode

Figure 1 Properties panel, HTML mode How to add text Adding text to a document To add text to a Dreamweaver document, you can type text directly in the Document window, or you can cut and paste text. You modify text by using the Properties

More information

Using Adobe Contribute 4 A guide for new website authors

Using Adobe Contribute 4 A guide for new website authors Using Adobe Contribute 4 A guide for new website authors Adobe Contribute allows you to easily update websites without any knowledge of HTML. This handout will provide an introduction to Adobe Contribute

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

Electronic Portfolios in the Classroom

Electronic Portfolios in the Classroom Electronic Portfolios in the Classroom What are portfolios? Electronic Portfolios are a creative means of organizing, summarizing, and sharing artifacts, information, and ideas about teaching and/or learning,

More information

Creating Forms. Starting the Page. another way of applying a template to a page.

Creating Forms. Starting the Page. another way of applying a template to a page. Creating Forms Chapter 9 Forms allow information to be obtained from users of a web site. The ability for someone to purchase items over the internet or receive information from internet users has become

More information

Title and Modify Page Properties

Title and Modify Page Properties Dreamweaver After cropping out all of the pieces from Photoshop we are ready to begin putting the pieces back together in Dreamweaver. If we were to layout all of the pieces on a table we would have graphics

More information

Dreamweaver Basics Workshop

Dreamweaver Basics Workshop Dreamweaver Basics Workshop Robert Rector idesign Lab - Fall 2013 What is Dreamweaver? o Dreamweaver is a web development tool o Dreamweaver is an HTML and CSS editor o Dreamweaver features a WYSIWIG (What

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2013

DOING MORE WITH WORD: MICROSOFT OFFICE 2013 DOING MORE WITH WORD: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2007

DOING MORE WITH WORD: MICROSOFT OFFICE 2007 DOING MORE WITH WORD: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

NVU Web Authoring System

NVU Web Authoring System NVU Web Authoring System http://www.nvu.com/index.php Table of Contents Using Nvu as Your Web Page Authoring System: Getting Started Opening a page, saving, and previewing your work...3 Formatting the

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Dreamweaver MX Overview. Maintaining a Web Site

Dreamweaver MX Overview. Maintaining a Web Site Dreamweaver MX Overview Maintaining a Web Site... 1 The Process... 1 Filenames... 1 Starting Dreamweaver... 2 Uploading and Downloading Files... 6 Check In and Check Out Files... 6 Editing Pages in Dreamweaver...

More information

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved.

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved. Master web design skills with Microsoft FrontPage 98. This step-by-step guide uses over 40 full color close-up screen shots to clearly explain the fast and easy way to design a web site. Use edteck s QuickGuide

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

Overview of the Adobe Dreamweaver CS5 workspace

Overview of the Adobe Dreamweaver CS5 workspace Adobe Dreamweaver CS5 Activity 2.1 guide Overview of the Adobe Dreamweaver CS5 workspace You can access Adobe Dreamweaver CS5 tools, commands, and features by using menus or by selecting options from one

More information

A Dreamweaver Tutorial. Contents Page

A Dreamweaver Tutorial. Contents Page A Dreamweaver Tutorial Contents Page Page 1-2 Things to do and know before we start Page 3-4 - Setting up the website Page 5 How to save your web pages Page 6 - Opening an existing web page Page 7 - Creating

More information

Adobe Dreamweaver CS5/6: Learning the Tools

Adobe Dreamweaver CS5/6: Learning the Tools Adobe Dreamweaver CS5/6: Learning the Tools Dreamweaver is an HTML (Hypertext Markup Language) editor, authoring tool, and Web site management tool. Dreamweaver is a WYSIWYG (what you see is what you get)

More information

Developing a Home Page

Developing a Home Page FrontPage Developing a Home Page Opening Front Page Select Start on the bottom menu and then Programs, Microsoft Office, and Microsoft FrontPage. When FrontPage opens you will see a menu and toolbars similar

More information

Information Systems Center. FrontPage 2003 Reference Guide for COMM 321 & 421

Information Systems Center. FrontPage 2003 Reference Guide for COMM 321 & 421 Information Systems Center FrontPage 2003 Reference Guide for COMM 321 & 421 September 2008 Table of Contents Portfolio Web Sites & Web Pages... 1 Open Your Portfolio Web Site in FrontPage for Editing...

More information

Formatting a Report with Word 2010

Formatting a Report with Word 2010 Formatting a Report with Word 2010 The basics Although you can use Word to do a great many formatting tasks, here we will concentrate on the basic requirements for good presentation of a report. These

More information

Dreamweaver CS 5.5. University Information Technology Services. Training, Outreach, Learning Technologies, and Video Production

Dreamweaver CS 5.5. University Information Technology Services. Training, Outreach, Learning Technologies, and Video Production Dreamweaver CS 5.5 Creating Web Pages with a Template University Information Technology Services Training, Outreach, Learning Technologies, and Video Production Copyright 2012 KSU Department of Information

More information

Adobe Dreamweaver CC 17 Tutorial

Adobe Dreamweaver CC 17 Tutorial Adobe Dreamweaver CC 17 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

COMSC-031 Web Site Development- Part 2

COMSC-031 Web Site Development- Part 2 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal December 5, 2013 Chapter 13 13 Designing a Web Site with CSS In addition to creating styles for text, you can use CSS to create

More information

Building TPS Web Pages with Dreamweaver

Building TPS Web Pages with Dreamweaver Building TPS Web Pages with Dreamweaver Title Pages 1. Folder Management 7 2. Defining Your Site 8-11 3. Overview of Design Features 12-22 4. Working with Templates 23-25 5. Publishing Your Site to the

More information

Dreamweaver CS5 Lab 2

Dreamweaver CS5 Lab 2 Dreamweaver CS5 Lab 2 Using an External Style Sheet in Dreamweaver Creating the site definition First, we'll set up the site and define it so that Dreamweaver understands the site structure for your project.

More information

Dazzle the Web with Dynamic Dreamweaver, Part II

Dazzle the Web with Dynamic Dreamweaver, Part II Dazzle the Web with Dynamic Dreamweaver, Part II In the second Dreamweaver workshop we will learn the following skills: 1. Adding hyperlinks to our home page 2. Adding images to our home page 3. Creating

More information

With Dreamweaver CS4, Adobe has radically

With Dreamweaver CS4, Adobe has radically Introduction to the Dreamweaver Interface With Dreamweaver CS4, Adobe has radically reengineered the Dreamweaver interface to provide a more unified experience across all of the Creative Suite applications.

More information

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010 Week 5 Creating a Calendar About Tables Tables are a good way to organize information. They can consist of only a few cells, or many cells that cover several pages. You can arrange boxes or cells vertically

More information

Creating a Website in Schoolwires

Creating a Website in Schoolwires Creating a Website in Schoolwires Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Navigating to an assigned section... 2 Accessing Site Manager... 2 Section Workspace

More information

Microsoft Word 2007 on Windows

Microsoft Word 2007 on Windows 1 Microsoft Word 2007 on Windows Word is a very popular text formatting and editing program. It is the standard for writing papers and other documents. This tutorial and quick start guide will help you

More information

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10 CONTENTS Chapter 1 Introduction to Dreamweaver CS3 1 About Dreamweaver CS3 Interface...4 Title Bar... 4 Menu Bar... 4 Insert Bar... 5 Document Toolbar... 5 Coding Toolbar... 6 Document Window... 7 Properties

More information

Dreamweaver Tutorial #2

Dreamweaver Tutorial #2 Dreamweaver Tutorial #2 My web page II In this tutorial you will learn: how to use more advanced features for your web pages in Dreamweaver what Cascading Style Sheets (CSS) are and how to use these in

More information

Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES

Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES Intro to FrontPage OVERVIEW: This handout provides a general overview of Microsoft FrontPage. AUDIENCE: All Instructional

More information

Dreamweaver CS3 Concepts and Techniques

Dreamweaver CS3 Concepts and Techniques Dreamweaver CS3 Concepts and Techniques Chapter 3 Tables and Page Layout Part 1 Other pages will be inserted in the website Hierarchical structure shown in page DW206 Chapter 3: Tables and Page Layout

More information

Dear Candidate, Thank you, Adobe Education

Dear Candidate, Thank you, Adobe Education Dear Candidate, In preparation for the Web Communication certification exam, we ve put together a set of practice materials and example exam items for you to review. What you ll find in this packet are:

More information

Microsoft Word Tutorial

Microsoft Word Tutorial Microsoft Word Tutorial 1 GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

Page Layout Using Tables

Page Layout Using Tables This section describes various options for page layout using tables. Page Layout Using Tables Introduction HTML was originally designed to layout basic office documents such as memos and business reports,

More information

Center for Faculty Development and Support Making Documents Accessible

Center for Faculty Development and Support Making Documents Accessible Center for Faculty Development and Support Making Documents Accessible in Word 2007 Tutorial CONTENTS Create a New Document and Set Up a Document Map... 3 Apply Styles... 4 Modify Styles... 5 Use Table

More information

Dreamweaver CS5 Lab 4: Sprys

Dreamweaver CS5 Lab 4: Sprys Dreamweaver CS5 Lab 4: Sprys 1. Create a new html web page. a. Select file->new, and then Blank Page: HTML: 2 column liquid, left sidebar, header and footer b. DocType: XHTML 1.0 Strict c. Layout CSS:

More information

Eng 110, Spring Week 03 Lab02- Dreamwaver Session

Eng 110, Spring Week 03 Lab02- Dreamwaver Session Eng 110, Spring 2008 Week 03 Lab02- Dreamwaver Session Assignment Recreate the 3-page website you did last week by using Dreamweaver. You should use tables to control your layout. You should modify fonts,

More information

What is EasyWeb?! 3 EasyWeb QuickStart! 4. Publishing Your Website! 10

What is EasyWeb?! 3 EasyWeb QuickStart! 4. Publishing Your Website! 10 What is EasyWeb?! 3 EasyWeb QuickStart! 4 Website List! 6 Toolbar! 6 Inspector, Assets and Widgets! 7 Assets! 8 Widgets! 8 EasyWeb s Web Page Designer! 8 Publishing Your Website! 10 Head and Footer Code!

More information

Section 6: Dreamweaver

Section 6: Dreamweaver Section 6: Dreamweaver 1 Building TPS Web Pages with Dreamweaver Title Pages 1. Dreamweaver Storyboard Pages 3 2. Folder Management 4 3. Defining Your Site 5-8 4. Overview of Design Features 9-19 5. Working

More information

COMSC-031 Web Site Development- Part 2. Part-Time Instructor: Joenil Mistal

COMSC-031 Web Site Development- Part 2. Part-Time Instructor: Joenil Mistal COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal Chapter 9 9 Creating Pages with Frames You can divide the display area of a Web browser into multiple panes by creating frames.

More information

Microsoft FrontPage. An Introduction to. Lecture No.1. Date: April Instructor: Mr. Mustafa Babagil. Prepared By: Nima Hashemian

Microsoft FrontPage. An Introduction to. Lecture No.1. Date: April Instructor: Mr. Mustafa Babagil. Prepared By: Nima Hashemian An Introduction to Microsoft FrontPage Lecture No.1 Date: April 20. 2007 Instructor: Mr. Mustafa Babagil Prepared By: Nima Hashemian 2006 An Introduction to FrontPage Mathematics Department Eastern Mediterranean

More information

Dreamweaver CS4: Layout Guide. Převzato z

Dreamweaver CS4: Layout Guide. Převzato z Dreamweaver CS4: Layout Guide Převzato z www.bewebmaster.com Intro This tutorial will help you: 1. Define a new Dreamweaver web site 2. Create a new HTML file 3. Create a new CSS file and attach it to

More information

ACA Dreamweaver Exam Notes

ACA Dreamweaver Exam Notes ACA Dreamweaver Exam Notes Remember when you need to copy and paste the text you have to open up that actual text file itself and the need to go to edit> select all>, edit> copy>, then go back to the html

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Using Dreamweaver CC. 6 Styles in Websites. Exercise 1 Linked Styles vs Embedded Styles

Using Dreamweaver CC. 6 Styles in Websites. Exercise 1 Linked Styles vs Embedded Styles Using Dreamweaver CC 6 So far we have used CSS to arrange the elements on our web page. We have also used CSS for some limited formatting. In this section we will take full advantage of using CSS to format

More information

Dreamweaver Website 1: Managing a Website with Dreamweaver

Dreamweaver Website 1: Managing a Website with Dreamweaver Page 1 of 20 Web Design: Dreamweaver Websites Managing Websites with Dreamweaver Course Description: In this course, you will learn how to create and manage a website using Dreamweaver Templates and Library

More information

Microsoft Word 2011 Tutorial

Microsoft Word 2011 Tutorial Microsoft Word 2011 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

Creating a Newsletter

Creating a Newsletter Chapter 7 Creating a Newsletter In this chapter, you will learn the following to World Class standards: Setting the Margins Changing the Font and Font Size Inserting a Table Inserting a Picture Adding

More information

Getting Started with CSS Sculptor 3

Getting Started with CSS Sculptor 3 Getting Started with CSS Sculptor 3 With CSS Sculptor, you can quickly create a cross-browser compatible layout with custom widths, margins, padding, background images and more. Additionally, you can use

More information

Dreamweaver Template Tutorial - How to create a website from a template

Dreamweaver Template Tutorial - How to create a website from a template Dreamweaver Template Tutorial - How to create a website from a template In this tutorial you will create a website using Dreamweaver s premade templates. You are going to learn how to style them using

More information

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1.

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1. -Using Excel- Note: The version of Excel that you are using might vary slightly from this handout. This is for Office 2004 (Mac). If you are using a different version, while things may look slightly different,

More information

Table of Contents. Overview... 4 Advanced Content Items... 4 Accessibility... 4 iframe Textpoppers Math Characters and Equations...

Table of Contents. Overview... 4 Advanced Content Items... 4 Accessibility... 4 iframe Textpoppers Math Characters and Equations... Dallas County Community College District Table of Contents Overview... 4 Advanced Content Items... 4 Accessibility... 4 iframe... 4 Insert a Web Page... 4 Insert a PDF... 6 Textpoppers... 8 Insert a Text

More information

Sign in and join ADC Newsletters Feedback. Creating your first website Part 2: Creating the page layout

Sign in and join ADC Newsletters Feedback. Creating your first website Part 2: Creating the page layout 1 of 14 2/14/2008 2:31 PM Adobe Dreamweaver Article Adobe Developer Connection Sign in and join ADC Newsletters Feedback RSS Creating your first website Part 2: Creating the page layout Jon Varese Adobe

More information

Getting Started with Eric Meyer's CSS Sculptor 1.0

Getting Started with Eric Meyer's CSS Sculptor 1.0 Getting Started with Eric Meyer's CSS Sculptor 1.0 Eric Meyer s CSS Sculptor is a flexible, powerful tool for generating highly customized Web standards based CSS layouts. With CSS Sculptor, you can quickly

More information

PART 7. Formatting Pages

PART 7. Formatting Pages PART 7 Formatting Pages In the preceding part, you learned how to format characters and paragraphs. In this part, you learn how to apply formatting that affects entire pages. You ll start with changing

More information

Creating a Website with Dreamweaver 4

Creating a Website with Dreamweaver 4 Creating a Website with Dreamweaver 4 What is Dreamweaver (DW)? DW is a visual web page editor that allows you to create and manage Websites and pages without having to learn HTML (Hyper Text Markup Language).

More information

PBwiki Basics Website:

PBwiki Basics Website: Website: http://etc.usf.edu/te/ A wiki is a website that allows visitors to edit or add their own content to the pages on the site. The word wiki is Hawaiian for fast and this refers to how easy it is

More information

There are six main steps in creating web pages in FrontPage98:

There are six main steps in creating web pages in FrontPage98: This guide will show you how to create a basic web page using FrontPage98 software. These instructions are written for IBM (Windows) computers only. However, FrontPage is available for Macintosh users

More information

Layout with Layers and CSS

Layout with Layers and CSS Layout with Layers and CSS Today we're going to make a Web site layout. Preparatory Step 1. Inside your folder create a new folder and name it layout. 2. Inside the layout folder create a new folder and

More information

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information

Title and Modify Page Properties

Title and Modify Page Properties Dreamweaver After cropping out all of the pieces from Photoshop we are ready to begin putting the pieces back together in Dreamweaver. If we were to layout all of the pieces on a table we would have graphics

More information

CAL 9-2: Café Soylent Green Chapter 12

CAL 9-2: Café Soylent Green Chapter 12 CAL 9-2: Café Soylent Green Chapter 12 This version is for those students who are using Dreamweaver CC. You will be completing the Forms Tutorial from your textbook, Chapter 12 however, you will be skipping

More information

Creating your first website Part 4: Formatting your page with CSS

Creating your first website Part 4: Formatting your page with CSS Adobe - Developer Center : Creating your first website Part 4: Formatting your page... Page 1 of 23 Dreamweaver Article Creating your first website Part 4: Formatting your page with CSS Jon Varese Adobe

More information

The Dreamweaver Interface

The Dreamweaver Interface The Dreamweaver Interface Let s take a moment to discuss the different areas of the Dreamweaver screen. The Document Window The Document Window shows you the current document. This is where you are going

More information

To illustrate how to set TAG styles the <body> and <h1> tags (for the BODY and the HEADING 1 styles) will be adjusted.

To illustrate how to set TAG styles the <body> and <h1> tags (for the BODY and the HEADING 1 styles) will be adjusted. Chapter The formatting of CSS pages is carried out by setting the required styles. There are four different types of styles: Class which are custom styles that you create. You did this in Chapter 12. Tag

More information

Dreamweaver Domain 5: Organizing Content by Using Dreamweaver CS5

Dreamweaver Domain 5: Organizing Content by Using Dreamweaver CS5 Dreamweaver Domain 5: Organizing Content by Using Dreamweaver CS5 Adobe Creative Suite 5 ACA Certification Preparation: Featuring Dreamweaver, Flash, and Photoshop 1 Objectives Set and modify document

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual 1 Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

Creating a Website with Publisher 2016

Creating a Website with Publisher 2016 Creating a Website with Publisher 2016 Getting Started University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2017 KSU Division of University Information

More information

Website Management with the CMS

Website Management with the CMS Website Management with the CMS In Class Step-by-Step Guidebook Updated 12/22/2010 Quick Reference Links CMS Login http://staging.montgomerycollege.edu/cmslogin.aspx Sample Department Site URLs (staging

More information

Lava New Media s CMS. Documentation Page 1

Lava New Media s CMS. Documentation Page 1 Lava New Media s CMS Documentation 5.12.2010 Page 1 Table of Contents Logging On to the Content Management System 3 Introduction to the CMS 3 What is the page tree? 4 Editing Web Pages 5 How to use the

More information

Objective % Select and utilize tools to design and develop websites.

Objective % Select and utilize tools to design and develop websites. Objective 207.02 8% Select and utilize tools to design and develop websites. Hypertext Markup Language (HTML) Basic framework for all web design. Written using tags that a web browser uses to interpret

More information

Creating Web Pages with a Template

Creating Web Pages with a Template Creating Web Pages with a Template Adobe Dreamweaver Creative Cloud 2017 University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2017 KSU Division of

More information