Intermediate HTML Using Dreamweaver

Size: px
Start display at page:

Download "Intermediate HTML Using Dreamweaver"

Transcription

1 Intermediate HTML Using Dreamweaver Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk: (304) , Last revised: May 25, West Virginia University

2 Table of Contents Course Description... 1 The Big Picture... 2 Course strategy... 3 Tables... 3 Creating a table... 3 Changing a table s properties... 5 Changing the number of rows or columns... 5 Changing table or cell width or height... 6 Sorting a table... 6 Changing other table properties... 6 HTML for tables... 6 Border, cellpadding and cellspacing... 7 Width... 8 Content Alignment... 8 Rowspan and Colspan... 9 Colors Selecting colors Text color Link and visited link color Background images Fonts Font size Font face Page Properties Div and Span tags Inserting Div tags Selecting a div Span tags Using Dreamweaver s built-in layouts Creating a page using a built-in layout... 19

3 Course Description In Intermediate HTML Using Dreamweaver CS4, we will add to the basic concepts that were covered in the introductory workshop. Topics that will be covered today include color specifications, the use of tables, setting a page title, the use of div and span tags, and Dreamweaver tools for editing your page. Throughout, we keep in mind the distinction between page content and page format. The web development training curriculum includes the following courses: Introduction to HTML Using Dreamweaver Intermediate HTML Using Dreamweaver Web Site Tools in Dreamweaver Cascading Style Sheets Creating Accessible Web Pages Introduction to Web 2.0 Thank you for attending today s workshop, The OIT Technical Support Services Trainers Intermediate HTML Using Dreamweaver 1

4 The Big Picture No, this section is not about incorporating large images into your web pages, but instead reiterates the approach we are using in all of the training courses in the web development curriculum. The key idea is that the content of your web page (that is, the information that you wish to convey to those who visit the page) is considered, developed, and stored separately from the specification of the page s design or format. Page Content: Text, pictures, links, tables, and other elements that contain the information presented by the web page. Stored in a hypertext markup language (html) file. Preparing the content file consists of inserting the content elements and labeling them using the tags in the hypertext markup language. For example, the language provides a means of denoting that a particular chunk of text is to be treated as a link. When a web browser encounters text labeled as a link, it puts the text on the screen in a manner that allows the person visiting the page to recognize the presence of a link and follow it if he or she wishes. Page Design: Colors, fonts, positioning, backgrounds, borders, and anything else to do with the appearance of the content elements. Stored in a cascading style sheet (css) file. Preparing the design file consists of specifying the attributes of appearance that are to be associated with content labeled in a particular way. For example, it is customary for links to appear blue and underlined on screen, but one could choose to present them in a different way by altering the attributes associated with the link label. Dreamweaver provides a means of creating each of these files through its graphical interface, but to understand fully how the page design controls the appearance of the page content, one must know something about the hypertext markup language. That s why we ll be looking both at the graphical, or design, view of a page and the html code that underlies the page. There s one other point to be made. Anyone looking at a typical page can easily pick out most of the content elements because they are distinguished visually. For example, we are accustomed to seeing paragraphs that are indented or separated from one another by some blank space in order to indicate where one paragraph ends and the next begins. Likewise, pictures, tables, and links are easily spotted. But to gain full control over the page s design through labeling the page s content and do so efficiently we need a mechanism for labeling a group of content elements or a group of characters. In a book, there might be sections or chapters containing a group of paragraphs along with any pictures and tables related to that portion of the book s content. In html, there are divisions and spans. A division, labeled with the tag div, consists of a contiguous block of content, possibly including other divisions. A span, labeled with the tag span, is a consecutive sequence of characters within the content 2 Intermediate HTML Using Dreamweaver

5 file. We ll get a better understanding of div and span as we work with them in this course and later ones in the web development sequence. Course strategy In the introductory course, you saw how to incorporate paragraphs and headings, ordered and unordered lists, links, and images into a web page using Dreamweaver, and how those elements were labeled using html tags. In this course, we ll start by looking at some additional elements in isolation specifically, tables, colors, divisions and spans, and page titles in order to see how Dreamweaver facilitates our work with them and how html represents them. Then we ll put these elements together in the construction of a web page. Along the way, we ll also look at some of the tools that Dreamweaver provides for editing a page. We ll do this work in a brand new Dreamweaver site, set up as described in the introductory course. Tables Tables are the customary means of presenting collections of related data in an organized format. Note: In the past, tables have been used to control the layout of an entire web page, not merely the portion of the page on which an array of data appears. Using tables as a layout tool has even been presented in earlier versions of our OIT web development workshops. However, we now strongly recommend that style sheets be used to control layout, while tables are reserved for their original purpose, which is to present collections of data. Creating a table After positioning your cursor at the point in the page where you want your table to appear, create the table in Dreamweaver in one of these ways: 1. Select Table from the Insert menu. 2. Press Ctrl-Alt-T on your keyboard. 3. Select Table from the Common category in the Insert panel. Whichever means you use, the following window will appear, allowing you to set the initial attributes of the table. Any of these attributes can be changed later, but it s easiest to set them now. Ultimately, design attributes like the table s width, border thickness, cell padding, and cell spacing should be controlled by your style sheet. Intermediate HTML Using Dreamweaver 3

6 The number of rows and columns will depend on your data and can easily be changed later if you find you have more or less data than you originally thought. The numbers include any header row or column. Table width can be expressed in pixels or as a percentage of the width of the page element containing the table. If the width is expressed in pixels, then it will have that width regardless of the size of the browser window in which it is viewed. If expressed as a percentage, then the width will usually grow or shrink with the window s width. Specifying that the table has a header, which may consist of row or column labels, will facilitate formatting the header so that it stands out from the rest of the table. The table s caption will appear on the web page, just above the table. The summary may provide additional information about the table s contents, but is not included on the page. The summary may be helpful to a visually impaired person accessing the web page using a screen reader. Click OK when you have made your choices in the Table window. 4 Intermediate HTML Using Dreamweaver

7 At the bottom of the preceding page, you ll see how this table might look on your web page after some cells have been filled in. Notice the caption appearing above the table and the bold text used by default in the header cells. Changing a table s properties Changing the number of rows or columns Our example table has already acquired an additional row. If your cursor is in any cell of the table, then pressing the Tab key on your keyboard will move the cursor to the next cell, working left-to-right and then top-to-bottom. If your cursor is in the bottom right cell of the table, then a new row will be created and your cursor placed in its leftmost cell. This is the most straightforward way to add just the number of rows you need at the end of a table. Pop-up menu. More generally, one can use the context sensitive pop-up menu to insert or delete rows or columns. Start by placing the cursor in the row or column following the location where you want the new rows or columns to appear. Right-click and go to the Table submenu of the pop-up menu. From there, you can select the option appropriate to the action you want to take. If you choose Insert Rows or Columns you ll be presented with a window allowing you to insert a specified number of rows or columns either before or after the cursor s location. Property sheet. With the entire table selected, the property sheet displayed at the bottom of the Dreamweaver window will be that for the table as a whole. You can change the number in the Rows or Cols field to add or remove rows or columns from the bottom or the right side of the table, respectively. Intermediate HTML Using Dreamweaver 5

8 Changing table or cell width or height As usual, there are multiple ways to change width or height attributes of a table or its cells. These are attributes that, ultimately, you will probably want to control using a style sheet, but the Dreamweaver interface gives you easy ways to experiment with different table specifications. Click and drag. The most straightforward way to alter the dimensions of a table, row, or column is to move the mouse cursor over the boundary of the component you wish to change. When the mouse cursor changes to a two-headed arrow, hold down the left mouse button and drag the boundary in the direction you want to take it. Property sheet. With the table selected, so the table s property sheet appears at the bottom of the Dreamweaver window, you will find four tools on the bottom half of the property sheet that pertain to table width and height. Those tools are circled in the screen capture on the right. If you move your mouse cursor over a tool, a tooltip will appear on the screen, briefly describing the tool s function. The left hand tools in the two rows will clear column widths or clear row heights. That means that the widths or heights will be adjusted so that they are just large enough to accommodate the data currently in the table. The two right hand tools in the top row will convert the table s width specification from pixels to percent or vice versa. The conversion will be based on the current layout of the table, and will affect the table s behavior in response to changes in the size of the browser window in which it is viewed, as described above in the section on creating a table. Menu. The Modify menu can also be used to adjust widths and heights. With the table selected, go to the Table submenu of the Modify menu. There, you ll find all the options offered by the tools on the property sheet. (If you have difficulty selecting the table with your mouse, you can also use the Table submenu of the Modify menu to select the table. That option is the top item on the submenu. Sorting a table You can sort a table in Dreamweaver by selecting Sort Table from the Commands menu. Changing other table properties Other table properties include features like cell padding and spacing, borders, and alignment. If you look at the table s property sheet, shown above, you ll see that these features can be changed there. Our recommendation, though, is that you use a style sheet to control these design aspects of the table. HTML for tables We ve seen how to create and manipulate tables using Dreamweaver s graphical interface. Now we ll take a look at the underlying html code used to label a table s contents. 6 Intermediate HTML Using Dreamweaver

9 Here are the basic tags that are used together to create a table: Tag: Function: <table> <caption> </caption> <th> </th> <tr> <td> </td> </tr> </table> starts a new table starts the table s caption closes the table s caption starts a header cell closes a header cell starts a table row starts a table cell closes table cell closes table row closes the table Example Tags: <table> <tr> <td>apples</td><td>peaches</td><td>pears</td> </tr> <tr> <td>oranges</td><td>bananas</td><td>grapes</td> </tr> <tr>apricots</td><td>plums</td><td>kiwis</td> </tr> </table> How it looks in a web browser: There are several table and cell attributes that will allow you to shape the table and its contents to achieve a specific look. Border, cellpadding and cellspacing These three attributes appear in the table tag if you alter the table s properties directly, rather than through the use of a stylesheet. We ll look at them now in preparation for considering the same attributes in the context of stylesheets. Table border specifies the thickness of the border that frames the entire table. Cellpadding determines the amount of open space between each cell s contents and the cell s border. Cellspacing determines the amount of open space there is between each cell in the table. Below is an example of all three uses in the same table along with the HTML code: Intermediate HTML Using Dreamweaver 7

10 Cellpadding Cell #1 Cell #2 Border Cellspacing <table border=10 cellpadding=20 cellspacing=20> <tr> <td>cell #1</td><td>Cell #2</td> </tr> </table> Width Width is another table attribute that can be specified within the table tag. Notice that the % sign is added after the number, if you want to specify the width as a percent rather than as a fixed number of pixels, and the entire number value is enclosed in quotes. Tag: Function: <table width= 100 > <td width= 25% > specifies the table s width to be 100 pixels specifies this cell s width will be ¼ of the enclosing object s total width Content Alignment You can align the contents of entire rows or specific cells by using either a horizontal (left, center, or right) or vertical (top, middle, bottom, or baseline) alignment command in either the <th> or <tr> or <td> tags. Example: 8 Intermediate HTML Using Dreamweaver

11 Tags: Function: <tr align= left > <td align= left > Will horizontally align the contents of the entire row or an individual cell on the left, subject to the cell padding specification <tr valign= middle > <td valign= middle > Will vertically align the contents of an entire row or an individual cell in the middle of the cell(s) Rowspan and Colspan You can arrange for the contents of a cell to span multiple columns or rows. T Tags: Function: <td colspan= n > n specifies the number of columns the table cell will span <td rowspan= n > n specifies the number of rows the table cell will span Example using Colspan <table border="1" cellpadding="3" cellspacing="3"> <tr><td align="center" colspan="3">this goes across the top</td></tr> <tr> <td align="center">cell #1</td> <td align="center">cell #2</td> <td align="center">cell #3</td> </tr> </table> Example using Rowspan <table border="3" cellpadding="3" cellspacing="3"> <tr> <td ROWSPAN="2" align="center" Width="75">Down the side</td> <td align="center" Width="75">Cell #1</td> </tr> <tr> <td align="center" Width="75">Cell #2</td> </tr> </table> Intermediate HTML Using Dreamweaver 9

12 Colors Colors on a web page are clearly an aspect of design rather than content (unless, I suppose, color is the subject of the web page), so control of color should generally reside in a style sheet. We ll look at color in the context of tables in order to see how colors can be specified using either Dreamweaver s graphical interface or html code. The same core methods are used to specify color attributes in style sheets. Discussion of colors in web pages used to be dominated by so-called web-safe colors, a set of 216 colors out of the spectrum one could usually count on a display to be able to reproduce. Thanks to technological advances over the past two decades, the range of colors that can be displayed even on handheld devices is far greater than on a standard monitor in the past. As a result, the importance of restricting oneself to web-safe colors is greatly diminished. Nonetheless, this history of color selection is reflected in the set of colors made most readily available through Dreamweaver s graphical interface. Color notation reflects the historical use of red, green, and blue phosphors in the coating of a cathode ray tube. Colors other than pure red, green, or blue were produced by exciting multiple phosphors to different degrees. The contribution from each color of phosphor is represented by a hexadecimal, or base 16, number, whose digits are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, and F. In different situations, Dreamweaver uses either a 6-digit or a 3-digit notation. In either situation, the first third of the sequence represents the red contribution, the middle third represents green, and the final third represents blue. Here are some examples. Color 6-Digit Code 3-Digit Code Red #FF0000 #F00 Green #00FF00 #0F0 Blue #0000FF #00F White #FFFFFF #FFF Black # #000 Yellow #FFFF00 #FF0 The original web-safe colors correspond to 3-digit codes in which each digit is one of 0, 3, 6, 9, C, or F. With 6 choices for each of the 3 digits, there are 6 x 6 x 6 = 216 possibilities altogether. The # symbol is not part of the color notation itself, but always precedes a color code when it appears in a html file or style sheet. You can use these hexadecimal colors to give your site a colorful background, color text, or specify the color of hyperlinks. One element that should be considered when adding color to your site is readability. Certain text and background color combinations can make reading difficult. Experiment with different combinations to find a few that allow your content to be displayed effectively. Selecting colors While you can always type the code for your chosen color, Dreamweaver often provides a convenient color picker that makes the most commonly used colors available to you. 10 Intermediate HTML Using Dreamweaver

13 For example, depending on the position of the cursor or the portion of the page that has been selected, you should see a property sheet for the appropriate region of the page, such as a table cell or row or column. Within that property sheet, you ll find a field labeled Bg (for background ) adjacent to a square and a rectangle, as shown in the screen shot to the right. The white rectangle is a space where you could type a color code. The square provides access to the color picker. Click on it to open the picker, which is shown to the right. Move your mouse over the picker and click on the color you want to use for the background of the selected portion of your page. The corresponding code will automatically be supplied. If you are working on a table and look at the code for it, you ll see something like one or more of the following examples. Tags: How it will look in a web browser: <table bgcolor= #FFFF00 > <tr bgcolor= #3399CC > <td bgcolor= #FFFF00 > The same bgcolor attribute can be used with any tag that governs a region of your web page. For example, to use a color as a background for the entire page, set a value for bgcolor in the body tag. Tag: How it will look in a web browser: <body bgcolor= #ffffcc > (pale yellow) Intermediate HTML Using Dreamweaver 11

14 Text color While you can specify the color of text for the entire page within the body tag by typing an appropriate attribute into Dreamweaver s code view of the page, most attempts to color text will lead you inexorably into the use of styles. Here is an example of how to use code view to specify a default font color for a page. Tag: <body text= #238E23 > (forest green) How it will look in a web browser: The most straightforward way to choose a different color for certain text on a page is as follows: 1. Select the text to be colored. 2. Select Color from the Format menu. 3. Choose the color in the Color window and click the OK button. At this point, the New CSS Rule window will open. 4. We ll work in this window much more extensively when we take on cascading style sheets directly. For now, it suffices just to give a name to our selector that is indicative of its intent. Since our intent right now is to color text, a name indicating the chosen color makes the most sense. After typing the name, click OK in the New CSS Rule window. Having been through this process once for a given color, you can more quickly apply the same color to other textual elements on your page by selecting from the Class menu 12 Intermediate HTML Using Dreamweaver

15 in the Properties sheet. You ll find that each time you create a new CSS rule of the sort specified above, a new entry for it will appear in the Class menu of the Properties sheet. The next screen shot shows a Properties sheet after creation of the red rule exemplified above. Link and visited link color As with the background and text colors, you specify the color of hyperlinks and visited links within the body tag. All links on the page will conform to the specified color selections. By default in HTML, links are blue and visited links are purple. Ordinarily, one would want to color links consistently throughout a page, so the link colors would be specified in conjunction with the body tag or, of course, through a style sheet. Examples Tag: <body link= #23238E vlink= C0C0C0 > (navy blue link, grey visited link) How it will look in a web browser: Background images You can use an image for the background of your web page. If the image is small, the browser will automatically tile the image, that is, reproduce it in columns across the page. Like colors, using images as backgrounds can also significantly hinder the readability of your page. Unlike using a single color, most images are made up of many colors that may not affect readability on one section of the page, but may greatly hinder readability on another section. Use background images with care. An example appears on the next page. Intermediate HTML Using Dreamweaver 13

16 Tag: How it will look in a web browser: <body background= trout_bg.gif > Fonts Like colors and background images, fonts and their attributes are aspects of a page s design, not its content, and thus are properly and most effectively controlled in a style sheet. We cover them here to introduce the ways in which fonts can be specified for a web page. Font size HTML and style sheets provide several ways to specify font size, either in absolute terms or relative to the current default size. This table illustrates the options: Point size Relative size HTML text size HTML relative text size 10 xx-small x-small/smaller Small 3 Default 18 Medium/larger Large 5 +2 ~36 x-large 6 +3 ~36 xx-large Intermediate HTML Using Dreamweaver

17 Here are some examples of these choices put to work in a HTML document: Tag: <font size = 6 >Size 6 Font</font> (Font sizes range from 1 to 7, with. 3 as the default font size) <font size= +4 >Plus 4</font> How it looks in a web browser: <font size= -2 >Minus 2</font> Font face You can specify a specific font to use for the entire body of the page or a particular section or item. To do so for the entire page, open the font tag after the body tag and close it just before closing the body tag. Example: <font face= Comic Sans MS >... text to be presented in the specified font... </font> You can also list alternate fonts. When the page is loaded, the browser will display the first available font. If none is available, the browser s default font will be used. Separate fonts in the list with commas. Example: <font face= Comic Sans MS, Arial, Tahoma >... text to be presented in the specified font... </font> As with text color, though, the most straightforward application of a font choice using Dreamweaver s Design view will lead to creation of a new style. 1. Select the text to be presented in a different font. 2. Select Font from the Format menu. Intermediate HTML Using Dreamweaver 15

18 3. Choose the font from the Fonts submenu. At this point, the New CSS Rule window will open. 4. We ll work in this window much more extensively when we take on cascading style sheets directly. For now, it suffices just to give a name to our selector that is indicative of its intent. Since our intent right now is to use the Arial font or its relatives, a name indicating the chosen font makes the most sense. After typing the name, click OK in the New CSS Rule window. Having been through this process once for a given font, you can more quickly apply the same font to other textual elements on your page by selecting from the Class menu in the Properties sheet. You ll find that each time you create a new CSS rule of the sort specified above, a new entry for it will appear in the Class menu of the Properties sheet. Page Properties We ve seen several aspects of a page s appearance text and background colors, background image, font, font size that we can alter for specific elements of the page. For the most part, though, our pages will be more pleasing aesthetically and thus more effective if we establish a consistent appearance from which we stray only when an element requires particular emphasis or special handling. Go to Page Properties to set the default features of the page s appearance. You can visit these properties in either of two ways: 1. Select Page Properties from the Modify menu. 2. Click on the Page Properties button on a Properties sheet. Either choice leads to the Page Properties window, shown below. 16 Intermediate HTML Using Dreamweaver

19 You can work your way systematically through the attributes presented in each category of this window to set your page s default appearance. You ll find some overlap in the attributes presented in the Appearance (CSS) category and those in the Appearance (HTML) category. Because these attributes are indeed aspects of the page s appearance, we strongly recommend that you control them through the CSS category. Div and Span tags Each of the attributes that we ve looked at has been associated with a specific tag that serves to determine the scope of the attribute. An attribute associated with a p tag applies to the entire paragraph. An attribute associated with the body tag applies to the entire page. But what if, for example, we wanted the attribute to apply to several paragraphs or to only part of a paragraph? In the former case, it would be possible, though tedious and inefficient, to apply the attribute to each of the several paragraphs. In the latter case, we need some way to specify a scope consisting of an arbitrary sequence of characters within a paragraph or other block of text. The div and span tags solve these problems. Use the div tag to group together several block elements (like paragraphs, headings, tables, and images) for common treatment. For layout purposes, div tags are often used to control the position of selected content on the page. The scope of a div tag cannot include only a part of any block element. That is, for example, if part of a paragraph is within a div tag s scope, then the entire paragraph must be. Dreamweaver will act to ensure that div tags are applied properly. Inserting Div tags The Dreamweaver interface provides two means of inserting div tags: Intermediate HTML Using Dreamweaver 17

20 1. On the Insert menu, go to Layout Objects and then select Div Tag from the submenu. 2. In the Insert pane, select Insert Div Tag from either the Common or Layout tool sets. Here s how to use one of these options: 1. Either position your cursor at the location where you would like to create a new empty div, or select the existing block elements that you would like to incorporate into a new div. 2. Insert the div tag using one of the two methods listed above. In either case, the following window will open: 3. If you selected page content in step 1, then the Insert field of the window will contain the text Wrap around selection, as it does here. If you merely positioned your cursor in step 1, then the Insert field will contain At insertion point. If you have already defined classes, such as to set text color or a particular font, the you can choose one of those classes from the Class menu. When you have made your selections, click the OK button. The Design view of your page will display a dotted outline around the page elements that constitute the scope of each div tag. Here is an example, in which the div encompasses a table and the paragraphs immediately before and after the table: 18 Intermediate HTML Using Dreamweaver

21 Selecting a div If you want to select a div in order to alter its properties, the easiest way to do so is to use the tag sequence that appears immediately below the Design view window. For example, if your cursor is positioned in one of the data cells of the table in the example above, then the tag sequence will look like this: The sequence indicates those tags within whose scope the current cursor position lies, beginning with the broadest scope (<body>) and working down to the narrowest (<td>). In the screen shot above, the div tag has been selected, so it is that div s properties sheet that is displayed below the tag sequence. Span tags For the most part, unlike div tags, you will not need to insert span tags manually. Instead, Dreamweaver will insert span tags for you when necessitated by the page design choices that you make. For example, if you select a section of text that does not match an existing paragraph and make formatting choices for that section of text, then Dreamweaver will set the scope of a span tag to match the selected text and record your formatting choices as attributes of the span tag. Here is the code produced by Dreamweaver when the words the last were colored red: <p>this is <span class="red">the last</span> paragraph.</p> Using Dreamweaver s built-in layouts Dreamweaver provides a large collection of page layouts that use style sheets to control the arrangement of content on a page. We re going to look at them now because: 1. They will let us create sophisticated pages with minimal knowledge of style sheets, and 2. They will illustrate and let us work with many of the page elements that we ve talked about so far in the web development workshop sequence. Creating a page using a built-in layout The procedure for creating a page using a built-in layout is very simple: 1. From the File menu, select New. 2. In the New Document window (shown below), select Blank Page from the leftmost column and HTML from the Page Type column. 3. In the Layout column, select a possible layout and judge from the preview that is presented whether the layout meets your needs. Once you have decide on a layout, be sure it is selected and then click the Create button. The example below comes from the layout named 3 column elastic, header and footer. Intermediate HTML Using Dreamweaver 19

22 20 Intermediate HTML Using Dreamweaver

23 As you may be able to guess just by looking at the layout, there are at least five divs in the page, for the header, footer, main content, sidebar1, and sidebar2. Less apparent from the layout is that there is a sixth div that encompasses all of the page content, but you can tell that it is there by looking at the tag sequences below the Design view when you place your cursor anywhere in the document. Now that the layout is set for you, you can modify the content to meet your own needs. Intermediate HTML Using Dreamweaver 21

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

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

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

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

INFS 2150 / 7150 Intro to Web Development / HTML Programming

INFS 2150 / 7150 Intro to Web Development / HTML Programming XP Objectives INFS 2150 / 7150 Intro to Web Development / HTML Programming Designing a Web Page with Tables Create a text table Create a table using the , , and tags Create table headers

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

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

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

Table of Contents. MySource Matrix Content Types Manual

Table of Contents. MySource Matrix Content Types Manual Table of Contents Chapter 1 Introduction... 5 Chapter 2 WYSIWYG Editor... 6 Replace Text... 6 Select Snippet Keyword... 7 Insert Table and Table Properties... 8 Editing the Table...10 Editing a Cell...12

More information

Html basics Course Outline

Html basics Course Outline Html basics Course Outline Description Learn the essential skills you will need to create your web pages with HTML. Topics include: adding text any hyperlinks, images and backgrounds, lists, tables, and

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

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal COMSC-030 Web Site Development- Part 1 Part-Time Instructor: Joenil Mistal Chapter 9 9 Working with Tables Are you looking for a method to organize data on a page? Need a way to control our page layout?

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

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

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

Using CSS in Web Site Design

Using CSS in Web Site Design Question 1: What are some of the main CSS commands I should memorize? Answer 1: The most important part of understanding the CSS language is learning the basic structure and syntax so you can use the language

More information

Chapter 4 Notes. Creating Tables in a Website

Chapter 4 Notes. Creating Tables in a Website Chapter 4 Notes Creating Tables in a Website Project for Chapter 4 Statewide Realty Web Site Chapter Objectives Define table elements Describe the steps used to plan, design, and code a table Create a

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

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

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

HTML and CSS a further introduction

HTML and CSS a further introduction HTML and CSS a further introduction By now you should be familiar with HTML and CSS and what they are, HTML dictates the structure of a page, CSS dictates how it looks. This tutorial will teach you a few

More information

COMSC-031 Web We S ite Site Development Development- Part 2 Part-Time Instructor: Joenil Mistal November 7, 2013

COMSC-031 Web We S ite Site Development Development- Part 2 Part-Time Instructor: Joenil Mistal November 7, 2013 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal November 7, 2013 Chapter 12 12 Creating and Applying Cascading Style Sheets This chapter shows you how to use Cascading Style

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

Dreamweaver MX Technical Support Services. Office of Information Technology, West Virginia University. OIT Help Desk ext.

Dreamweaver MX Technical Support Services. Office of Information Technology, West Virginia University. OIT Help Desk ext. Dreamweaver MX 2004 Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk - 293.4444 ext.1 http://oit.wvu.edu/support/training/classmat/ Instructors: Rick

More information

Rich Text Editor Quick Reference

Rich Text Editor Quick Reference Rich Text Editor Quick Reference Introduction Using the rich text editor is similar to using a word processing application such as Microsoft Word. After data is typed into the editing area it can be formatted

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

Introduction to Web Design CSS Reference

Introduction to Web Design CSS Reference Inline Style Syntax: Introduction to Web Design CSS Reference Example: text Internal Style Sheet Syntax: selector {property: value; Example:

More information

Introduction to Web Design CSS Reference

Introduction to Web Design CSS Reference Inline Style Syntax: Introduction to Web Design CSS Reference Example: text Internal Style Sheet Syntax: selector {property: value; Example:

More information

COMS 359: Interactive Media

COMS 359: Interactive Media COMS 359: Interactive Media Agenda Review Web Design Preview Review Tables Create html spreadsheets Page Layout Review Table Tags Numerous Attributes = border,

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 STYLESHEETS TO DESIGN A WEB SITE IN DREAMWEAVER MX 2004

USING STYLESHEETS TO DESIGN A WEB SITE IN DREAMWEAVER MX 2004 USING STYLESHEETS TO DESIGN A WEB SITE IN DREAMWEAVER MX 2004 Introduction This document assumes that you are familiar with the use of a computer keyboard and mouse, have a working knowledge of Microsoft

More information

IMY 110 Theme 7 HTML Tables

IMY 110 Theme 7 HTML Tables IMY 110 Theme 7 HTML Tables 1. HTML Tables 1.1. Tables The HTML table model allows authors to arrange data into rows and columns of cells, just as in word processing software such as Microsoft Word. It

More information

Dreamweaver CS6. Level 3. Topics Working with Text, List, and tables Working with Images

Dreamweaver CS6. Level 3. Topics Working with Text, List, and tables Working with Images Level 3 Topics Working with Text, List, and tables Working with Images Changing the Copy/ Paste Prefences in Dreamweaver You can set special paste preferences as default options when using Edit > Paste

More information

The American University in Cairo. Academic Computing Services. Word prepared by. Soumaia Ahmed Al Ayyat

The American University in Cairo. Academic Computing Services. Word prepared by. Soumaia Ahmed Al Ayyat The American University in Cairo Academic Computing Services Word 2000 prepared by Soumaia Ahmed Al Ayyat Spring 2001 Table of Contents: Opening the Word Program Creating, Opening, and Saving Documents

More information

Dreamweaver: Accessible Web Sites

Dreamweaver: Accessible Web Sites Dreamweaver: Accessible Web Sites Introduction Adobe Macromedia Dreamweaver 8 provides the most complete set of tools available for building accessible web sites. This workshop will cover many of them.

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

Working with Tables in Word 2010

Working with Tables in Word 2010 Working with Tables in Word 2010 Table of Contents INSERT OR CREATE A TABLE... 2 USE TABLE TEMPLATES (QUICK TABLES)... 2 USE THE TABLE MENU... 2 USE THE INSERT TABLE COMMAND... 2 KNOW YOUR AUTOFIT OPTIONS...

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

USER GUIDE MADCAP FLARE Tables

USER GUIDE MADCAP FLARE Tables USER GUIDE MADCAP FLARE 2018 Tables Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

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

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

Creating Accessible Word Documents

Creating Accessible Word Documents Creating Accessible Word Documents 1 of 11 Creating Accessible Word Documents Contents 1. General principles... 1 2. Styles/ Headings... 2 3. Table of Contents... 3 Updating a Table of Contents... 5 4.

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA PRESENCE RadEditor Guide SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com Contents Contents... 2 Introduction... 3 What is RadEditor?... 3 RadEditor

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

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Make a Website A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Overview Course outcome: You'll build four simple websites using web

More information

Dreamweaver Tutorials Working with Tables

Dreamweaver Tutorials Working with Tables Dreamweaver Tutorials This tutorial will explain how to use tables to organize your Web page content. By default, text and other content in a Web page flow continuously from top to bottom in one large

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

Tables *Note: Nothing in Volcano!*

Tables *Note: Nothing in Volcano!* Tables *Note: Nothing in Volcano!* 016 1 Learning Objectives After this lesson you will be able to Design a web page table with rows and columns of text in a grid display Write the HTML for integrated

More information

ADOBE Dreamweaver CS3 Basics

ADOBE Dreamweaver CS3 Basics ADOBE Dreamweaver CS3 Basics IT Center Training Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu This page intentionally left blank 2 8/16/2011 Contents Before you start with Dreamweaver....

More information

Text and Lists Use Styles. What Are Styles?

Text and Lists Use Styles. What Are Styles? Creating Accessible Word Documents Using Microsoft Word 2003 Cassandra Tex, MBA Assistive Technology Specialist Student Disability Resource Center Humboldt State University Word documents are inherently

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

Using Dreamweaver CS6

Using Dreamweaver CS6 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 our web site. Just

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

FRONTPAGE STEP BY STEP GUIDE

FRONTPAGE STEP BY STEP GUIDE IGCSE ICT SECTION 15 WEB AUTHORING FRONTPAGE STEP BY STEP GUIDE Mark Nicholls ICT lounge P a g e 1 Contents Introduction to this unit.... Page 4 How to open FrontPage..... Page 4 The FrontPage Menu Bar...Page

More information

Excel 2013 for Beginners

Excel 2013 for Beginners Excel 2013 for Beginners Class Objective: This class will familiarize you with the basics of using Microsoft Excel. Class Outline: Introduction to Microsoft Excel 2013... 1 Microsoft Excel...2-3 Getting

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

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

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

Word Creating & Using Tables. IT Training & Development (818) Information Technology

Word Creating & Using Tables. IT Training & Development (818) Information Technology Information Technology Word 2007 User Guide Word 2007 Creating & Using Tables IT Training & Development (818) 677-1700 training@csun.edu www.csun.edu/it/training Table of Contents Introduction... 1 Anatomy

More information

Introduction to Dreamweaver CS3

Introduction to Dreamweaver CS3 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

More information

CSS worksheet. JMC 105 Drake University

CSS worksheet. JMC 105 Drake University CSS worksheet JMC 105 Drake University 1. Download the css-site.zip file from the class blog and expand the files. You ll notice that you have an images folder with three images inside and an index.html

More information

Creating Accessible Web Sites with EPiServer

Creating Accessible Web Sites with EPiServer Creating Accessible Web Sites with EPiServer Abstract This white paper describes how EPiServer promotes the creation of accessible Web sites. Product version: 4.50 Document version: 1.0 2 Creating Accessible

More information

<body bgcolor=" " fgcolor=" " link=" " vlink=" " alink=" "> These body attributes have now been deprecated, and should not be used in XHTML.

<body bgcolor=  fgcolor=  link=  vlink=  alink= > These body attributes have now been deprecated, and should not be used in XHTML. CSS Formatting Background When HTML became popular among users who were not scientists, the limited formatting offered by the built-in tags was not enough for users who wanted a more artistic layout. Netscape,

More information

Tutorial 5 Working with Tables and Columns. HTML and CSS 6 TH EDITION

Tutorial 5 Working with Tables and Columns. HTML and CSS 6 TH EDITION Tutorial 5 Working with Tables and Columns HTML and CSS 6 TH EDITION Objectives Explore the structure of a Web table Create headings and cells in a table Create cells that span multiple rows and columns

More information

HTML & XHTML Tag Quick Reference

HTML & XHTML Tag Quick Reference HTML & XHTML Tag Quick Reference This reference notes some of the most commonly used HTML and XHTML tags. It is not, nor is it intended to be, a comprehensive list of available tags. Details regarding

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Formatting a spreadsheet means changing the way it looks to make it neater and more attractive. Formatting changes can include modifying number styles, text size and colours. Many

More information

INFS 2150 Introduction to Web Development

INFS 2150 Introduction to Web Development INFS 2150 Introduction to Web Development 3. Page Layout Design Objectives Create a reset style sheet Explore page layout designs Center a block element Create a floating element Clear a floating layout

More information

INFS 2150 Introduction to Web Development

INFS 2150 Introduction to Web Development Objectives INFS 2150 Introduction to Web Development 3. Page Layout Design Create a reset style sheet Explore page layout designs Center a block element Create a floating element Clear a floating layout

More information

CREATING ACCESSIBLE WEB PAGES

CREATING ACCESSIBLE WEB PAGES CREATING ACCESSIBLE WEB PAGES WITH DREAMWEAVER MX 2004 Introduction This document assumes that you are familiar with the use of a computer keyboard and mouse, have a working knowledge of Microsoft Windows

More information

Microsoft Office Training Skills 2010

Microsoft Office Training Skills 2010 Microsoft Office Training Skills 2010 Lesson 5 Working with pages, Tables, Shapes and Securing Documents Adding Page color Add color to the background of one or several pages in the document. 1. Click

More information

CSS (CASCADING STYLE SHEETS) LAYOUT: INTRODUCTION ON PAGE BACKGROUNDS. By Ted Mitchell

CSS (CASCADING STYLE SHEETS) LAYOUT: INTRODUCTION ON PAGE BACKGROUNDS. By Ted Mitchell CSS (CASCADING STYLE SHEETS) LAYOUT: INTRODUCTION ON PAGE BACKGROUNDS By Ted Mitchell CSS IS USED TO CREATE BOXES ON/IN THE PAGE THAT ARE POSITIONED IN CERTAIN PLACES AND GIVEN STYLES OR CHARACTERISTICS

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

Using Dreamweaver. 6 Styles in Websites. 1. Linked or Imported Stylesheets. 2. Embedded Styles. 3. Inline Styles

Using Dreamweaver. 6 Styles in Websites. 1. Linked or Imported Stylesheets. 2. Embedded Styles. 3. Inline Styles Using Dreamweaver 6 So far these exercises have deliberately avoided using HTML s formatting options such as the FONT tag. This is because the basic formatting available in HTML has been made largely redundant

More information

Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo

Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo Note: We skipped Study Guide 1. If you d like to review it, I place a copy here: https:// people.rit.edu/~nbbigm/studyguides/sg-1.docx

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

CSC 121 Computers and Scientific Thinking

CSC 121 Computers and Scientific Thinking CSC 121 Computers and Scientific Thinking Fall 2005 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language

More information

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student Welcome Please sit on alternating rows powered by lucid & no.dots.nl/student HTML && CSS Workshop Day Day two, November January 276 powered by lucid & no.dots.nl/student About the Workshop Day two: CSS

More information

Create a Web Page with Spry Navigation Bar. March 30, 2010

Create a Web Page with Spry Navigation Bar. March 30, 2010 Create a Web Page with Spry Navigation Bar March 30, 2010 Open a new web page by selecting File on the Menu bar, and pick Open. Select HTML as the page type and none from the layout list. Finally, we press

More information

Web Design. Santa Barbara. Dreamweaver Spry Menu Modifications

Web Design. Santa Barbara. Dreamweaver Spry Menu Modifications Web Design Santa Barbara Dreamweaver Spry Menu Modifications Scott Nelson Web Design Santa Barbara www.webdesignsb.com Updated Table of Contents Introduction... 3 Default Spry Menu... 3 Top-Level Menu

More information

ADDING CSS TO YOUR HTML DOCUMENT. A FEW CSS VALUES (colour, size and the box model)

ADDING CSS TO YOUR HTML DOCUMENT. A FEW CSS VALUES (colour, size and the box model) INTRO TO CSS RECAP HTML WHAT IS CSS ADDING CSS TO YOUR HTML DOCUMENT CSS IN THE DIRECTORY TREE CSS RULES A FEW CSS VALUES (colour, size and the box model) CSS SELECTORS SPECIFICITY WEEK 1 HTML In Week

More information

c122sep2214.notebook September 22, 2014

c122sep2214.notebook September 22, 2014 This is using the border attribute next we will look at doing the same thing with CSS. 1 Validating the page we just saw. 2 This is a warning that recommends I use CSS. 3 This caused a warning. 4 Now I

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

Web Design and Development Tutorial 03

Web Design and Development Tutorial 03 Table of Contents Web Design & Development - Tutorial 03... 2 Using and Applying CSS to XHTML... 2 Conventions... 2 What you need for this tutorial... 2 Common Terminology... 3 Parent / Child Elements...

More information

CSS Selectors. element selectors. .class selectors. #id selectors

CSS Selectors. element selectors. .class selectors. #id selectors CSS Selectors Patterns used to select elements to style. CSS selectors refer either to a class, an id, an HTML element, or some combination thereof, followed by a list of styling declarations. Selectors

More information

CounselLink Reporting. Designer

CounselLink Reporting. Designer CounselLink Reporting Designer Contents Overview... 1 Introduction to the Document Editor... 2 Create a new document:... 2 Document Templates... 3 Datasets... 3 Document Structure... 3 Layout Area... 4

More information

GO! with Microsoft PowerPoint 2016 Comprehensive

GO! with Microsoft PowerPoint 2016 Comprehensive GO! with Microsoft PowerPoint 2016 Comprehensive First Edition Chapter 1 Getting Started with Microsoft PowerPoint Learning Objectives Create a New Presentation Edit a Presentation in Normal View Add Pictures

More information

Chapter 4 Creating Tables in a Web Site Using an External Style Sheet

Chapter 4 Creating Tables in a Web Site Using an External Style Sheet Chapter 4 Creating Tables in a Web Site Using an External Style Sheet MULTIPLE RESPONSE Modified Multiple Choice 1. Attributes are set relative to the elements in a table. a. line c. row b. column d. cell

More information

MS Office Word Tabs & Tables Manual. Catraining.co.uk Tel:

MS Office Word Tabs & Tables Manual. Catraining.co.uk Tel: MS Office 2010 Word Tabs & Tables Manual Catraining.co.uk Tel: 020 7920 9500 Table of Contents TABS... 1 BASIC TABS WITH ALIGNMENT... 1 DEFAULT TAB STOP... 1 SET MANUAL TAB STOPS WITH RULER... 2 SET MANUAL

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

- The CSS1 specification was developed in CSSs provide the means to control and change presentation of HTML documents

- The CSS1 specification was developed in CSSs provide the means to control and change presentation of HTML documents 3.1 Introduction - The CSS1 specification was developed in 1996 - CSS2 was released in 1998 - CSS3 is on its way - CSSs provide the means to control and change presentation of HTML documents - CSS is not

More information

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes USER GUIDE MADCAP FLARE 2017 r3 QR Codes Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

Bixby Public Schools Course Essential Elements Grade: Desktop Publishing

Bixby Public Schools Course Essential Elements Grade: Desktop Publishing Content Objective) applicable) Desktop Publishing Weeks 1-6 10-12 1. Create and edit a publication. 2. Design a newsletter. 3. Publish a tri-fold brochure 1-1 Start and quit Publisher 1-2 Describe the

More information

HyperText Markup Language/Tables

HyperText Markup Language/Tables HyperText Markup Language/Tables 1 HyperText Markup Language/Tables Tables are used for presenting tabular data and abused for laying out pages. They can be inserted anywhere on the page, even within other

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

Corel Ventura 8 Introduction

Corel Ventura 8 Introduction Corel Ventura 8 Introduction Training Manual A! ANZAI 1998 Anzai! Inc. Corel Ventura 8 Introduction Table of Contents Section 1, Introduction...1 What Is Corel Ventura?...2 Course Objectives...3 How to

More information

HTML-5.com itemscopehttp://data-vocabulary.org/breadcrumb<span itemprop="title">html 5</span> itemscopehttp://data-vocabulary.

HTML-5.com itemscopehttp://data-vocabulary.org/breadcrumb<span itemprop=title>html 5</span> itemscopehttp://data-vocabulary. HTML-5.com HTML-5.com is an HTML User's Guide and quick reference of HTML elements and attributes for web developers who code HTML web pages, not only for HTML 5 but for HTML coding in general, with demos

More information

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002 University of Arizona Information Commons Training Page 1 of 21 WORD XP/2002 USER GUIDE Task- Formatting a Document in Word 2002 OBJECTIVES: At the end of this course students will have a basic understanding

More information