ART170. The ART170 Final Project

Size: px
Start display at page:

Download "ART170. The ART170 Final Project"

Transcription

1 The Final Project TABLE OF CONTENTS Define the site and set up the layout pg. 2 Ordering and externalizing the style sheet pg. 2 Creating the template pg. 3 Generating pages from the template pg. 4 Updating the template with links pg. 4 Adding a web font to the template pg. 5 Using the web font in Dreamweaver CS6 pg. 5 Adding a data table to a page pg. 0 Adding a contact form pg. Adding CSS to a form pg. 2 Adding HTML5 Form Attributes pg. 3 This guide will help you put together your final site. You will need to gather together the following assets: A CSS Starter Page (The less experienced should select a fixed-width page. Fluid layouts are more difficult to manage.) Images generated by the slices in the Fireworks Prototype project A web font from Font Squirrel Images for the portfolio or gallery

2 Define the Site and Set Up the Layout. Create a local site folder for your project! Within it you can add an images folder with all the images from the Fw prototype as well as any gallery images you plan to put on the gallery/portfolio page. 2. Define a site for the final project. Dreamweaver must have a defined site in order to produce templates! (Hint: Site > New Site. Give the site a name, and for the site folder, navigate to local site folder.) 3. Create a new document and select your CSS Starter page. Name it layout.html. 4. Adjust the CSS and add your images. 5. Change the page title that the browser uses for bookmarks. You can do this by hand coding in the head of the document, or you can do it visually by using the title field in the toolbar above the document in the Document Window. 6. Change the link names to Home, Resume, Portfolio, and Contact (or whatever page names you are using). Remove the fifth button unless you want to have an additional page in your site. To remove the button, select it and press the delete key twice. (See horizontal navigation tutorial for those of you who are switching from vertical navigation, or are using both.) Ordering and Externalizing the Style Sheet Ordering the Rules and Externalizing the Style Sheet We have been developing the layout using an embedded style sheet. That is, the styles are in the head of this one specific document. I like to design layouts this way because I might want to copy the page and try out different styles in the duplicate page. Now that the design is complete, however, best practices dictate that we export the styles to an external file. First we ll place the rules into a logical order.. Make sure the CSS Styles panel is open to All and, if necessary, click the arrow to the left of the <style> element to expand the list of rules. 2. Drag and drop styles into an order that follows whatever logic you like to follow. There are as many different ways to order the rules as there are developers, but whatever you do, be sure that you do not upset the cascade ( For example, if you put a:hover styles before a:link styles, the links will not work properly. 3. I often order the style sheet according to global styles, text styles, structure styles, navigation styles, HTML5 element styles, and generic floating and clearing styles. In large part because the CSS Starter Pages make good use of descendant selectors, usually nothing in this order disturbs the proper working of the rules. You will be adding your own custom rules, however, and may need to be more careful about your order. 2

3 Now we ll actually export the styles to an external document.. Make sure that the CSS Styles panel is still open and the All tab is selected. 2. Click the first selector name and hold down the shift key to select the last selector name. You want to select all the selector names, but not the <style> element itself. 3. Click the options button at the top right side of the CSS Styles panel. 4. Select the Move CSS Rules command. 5. Click the radio button to move the rules to a new style sheet. 6. When the dialog box that lets you navigate to where you want to save the document appears, make sure you're in the site folder. 7. Name the style sheet styles.css and click OK. 8. Back in the CSS Styles panel you can delete (with the trashcan icon at the bottom of the panel) the <style> element that appears above the new external style sheet that now is listed in the panel. You no longer need that now that the styles aren't embedded in the head. Creating the Template Now you will turn the layout into a template.. Select File>Save as Template. 3

4 2. Dreamweaver will ask you if you want to update links. Click Yes. Dreamweaver will add a Templates folder to the site file structure and place the new template inside it. Note: Some of you may want to use two or more templates: for example, one for the landing (home) page, and another for the inner pages. Next you will add editable regions to the template. You probably are going to add two editable regions to the template: one for the content area and one for the sidebar content under the navigation element. Make sure that the new template is still open.. Click the Code button at the top of the Document Window. 2. Locate the opening content div tag. 3. Locate the closing content div tag. 4. Select everything between these tags but not the tags themselves. The content div is there for structural purposes - in the style sheet a float is attached to it so that along with the floated sidebar div you get the look of two columns. Keeping those immune from editing will ensure that you don't accidentally remove either their opening or closing tags, thus "hosing" the whole layout. In any case, it is only the content within that you need to edit. 5. With this code selected, go to Insert>Template Objects>Editable Region. 6. When the New Editable Region dialog box displays, type maincontent and click OK. 7. Dreamweaver will add the turquoise tab to the area in the template in Design View (as long as you have visual aids, the default, still turned on. 8. Now select all the code after the closing nav element and before the closing sidebar div tag. 9. Again, select Insert>Template Objects>Editable Region. 0. In the New Editable Region dialog box type sidecontent and click OK. The template is now complete. Generating Pages from the Template. Select File > New. When the New Document dialog box displays, choose the Page from Template category on the left. 2. Select the defined site for your site from the first column. 3. Select the template from the second column. 4. A new page is created from the template. Save the page as index.html. 5. Repeat these steps to create the following pages (or whatever pages you re using for the final site): resume.html portfolio.html 4

5 contact.html Updating the Template. Return to the dwt file (the template) in the Document Window. 2. Select the Home text in the Home button. 3. Next to the Link field in the Properties Inspector, click the folder to navigate to the files in your site. 4. Select index.html. You ll notice that Dreamweaver displays it as../index.html. 5. Repeat steps 3 and 4 for the Resume, Portfolio, and Contact button text. 6. Select File > Save to save the changes to the template. When Dreamweaver asks if you want to update all the child pages of the template, click OK. Now all pages will have working buttons. Adding a Web Font to the Template This example adds a script font named Black Rose to the template. You will choose a font that is appropriate to the theme of your site.. Go to Font Squirrel: 2. Look for the list of Styles on the right side of the home page. 3. As an example, you might select the Script style. 4. On the Script style page, locate the font you like. 5. Click the font to go to its page. 6. Click link to go to its download page. 7. Click the blue button that says Kit. Take note of where you download the kit, which is in fact a folder of all the different formats, a demo style sheet, a license agreement, and style sheet. Warning! Make sure the font-kit you select includes all four formats. Otherwise the font might not show up in all browsers. 5

6 Using the Web Font in Dreamweaver CS6 Now that you have a custom font, you will use the new Dreamweaver CS6 web font feature to make adding the font to your pages as easy as adding a font from your own computer.. Return to the template. (Many designers use web fonts just for headings rather than all the body text, which might slow down the site.) 2. Select Modify > Web Fonts. 3. The Web Fonts Manager opens and displays Web fonts (if any) that you ve already added to Dreamweaver. Select Add Font. 4. Skip over the Font Name field and click the folder next to the EOT font field. 6

7 5. Navigate for Kit folder. 6. Locate the EOT version of the font. 7. Click Open. 8. Dreamweaver populates all the other fields with the appropriate fonts and even adds the font name to the name field! 9. Make sure you select the checkbox that assures Dreamweaver you have a license to use the font for web embedding purposes. 0. Click OK. Dreamweaver returns you to the Web Fonts Manager where you ll see the new addition to the font list.. Click Done. Your font is now ready to use in any site. 2. Return to the template. 3. Use the CSS Styles panel to create a new CSS rule. In the example below, the h and h2 headings are in the div with a class of content. The rules for both are grouped as for this exercise they are using the same font family as well as other properties:.content h,.content h2 7

8 4. Click OK after you name the font to open CSS Rule Definition dialog box. 5. Select the Type category on the left. 6. Click the down arrow to the right of the Font-family field. 7. Select the Edit Font List link at the bottom of the Font stack list. (You will see different font stacks in your own Dreamweaver installation this list includes a number of custom stacks.) 8. The Edit Font List dialog box displays. 9. Click the Plus icon to add a new font stack. 20. Under Available Fonts you ll see a list of all the fonts on your computer. Because you added the Font Squirrel font via the Web Fonts Manager, it too should appear. Web fonts appear at the bottom of the list with the generic font categories such as cursive, fantasy, serif, sans-serif, and mono. 2. Select the BLACKR (or your) font and use the double-arrow button to move it over to the Chosen Fonts column. 8

9 22. Select a more common script font such as Brush Script MT Italic to add to the stack. 23. Finally, end with the generic cursive font. If someone has an older browser or does not have a CSS enabled browser, at least the browser will substitute a script font of some kind. 24. Click OK. 25. Dreamweaver returns to the Type screen where you can select the new font stack from the drop down list next to the Font-family field. 26. Click OK. When you look at the page in Design View, you will see the Brush Script MT Italic or whatever font you selected from your own computer. Dreamweaver s Design View does not 27. Click the Live View button. Now you should see the Black Rose font. Warning: Remember is that you will need to upload the webfonts folder with the custom font folder inside. The font style sheet will be in the folder, in the correct path in relationship to the page. This is a critical component in ensuring that the font works as 9

10 expected on the Internet. Adding the Data Table to the Resume Page. Open the resume page. 2. Select Insert > Table. 3. Fill in the number of rows and columns, your preferred header orientation, the caption and summary. If you want to create a table for just your contact info, use 4 or 5 rows and 2 columns. Write a caption and select a header location, but do not fill in the other fields. 4. Click OK. 5. Fill in your table data in the various cells. 6. Style the table with CSS. You will use the following selectors: table, th, td, caption, and the :nth-child. The first four are tag selectors and the :nth-child uses the Compound selector in Dreamweaver s dialog box. Here are the rules I used. You can use them as a guide. table { margin-left: 5px; border: px solid #7E53A; margin-bottom: 5px; border-spacing: 0; width: 95%; } 0

11 th { td { text-align: left; color: #DECDBD; background: #7E53A; padding: 3px; } padding-top: 4px; padding-right: 3px; padding-bottom: 4px; padding-left: 3px; } caption { text-align: left; margin-bottom: 5px; font-size: 40%; color: #7E53A; } tr:nth-child(2n+2) { background: #F7EF00; } Adding a Contact Form. Open contact.html. 2. Place your cursor in the maincontent editable region. 3. Select Insert > Form > Form. 4. In the Properties panel, in the Form ID field, type contact. We are not going to worry about the action as we are not going to set the form up to actually go someplace upon submission. 5. Select Insert > Form > Fieldset. (Check to make sure that your cursor is between the opening and closing form tags.) 7. When the Legend dialog box displays, type Contact Us. 8. Use Split View to make sure that your cursor is after the closing legend tag. Press Return. 9. Select Insert > Form > Text field. 0. When the Accessibility dialog box displays, type name in the ID field.. Type Name in the Label field. 6. Leave the other options at their defaults and click OK. 7. Make sure your cursor is after the name textfield and press return. 8. Select Insert > Form > Text Field. 9. When the Accessibility dialog box displays, type in the ID field. 0. Type in the Label field.. Leave the other options at their defaults and click OK. 2. Make sure your cursor is after the textfield and press return. 3. Select Insert > Form > Text Field. 4. When the Accessibility dialog box displays, type phone in the ID field.

12 5. Type Phone in the Label field. 6. Leave the other options at their defaults and click OK. 7. Make sure your cursor is after the textfield and press return. 8. Select Insert > Form> Textarea. 9. When the Accessibility dialog box displays, type comments for the ID and Comments for the label. 20. Leave the other options at their defaults and click OK. 2. Make sure your cursor is after the closing Fieldset tag and press return. 22. Select Insert > Form > Button. 23. Cancel out of the accessibility dialog box. Submit buttons already are accessible by virtue of the type=submit attribute. 24. If you like, you can change the text of the button from Submit to any value you like in the Value field of the Property Panel. (Make sure the button is selected in order to see its options.) Adding CSS to the Form Elements. Go into Code View and locate the textfield that has an ID of name. 2. At the end, just before the closing bracket, type placeholder="first and Last Name". (Yes, you need the quotes.) 3. Add the autofocus attribute. 4. Add the required attribute. <input id=name name=name type=text placeholder="first and last name" required autofocus> 5. Locate the textfield that has an ID of Within the tag, just before the closing bracket, type placeholder= 7. Add the required attribute. 8. Change the type to type= . This will benefit users of ipad and iphone whose ios will present different keyboards depending on the input type. <label for=" "> </label><input type=" " name=" " id=" " placeholder= required> 9. Locate the textfield that has an ID of phone. 0. Within the tag, just before the closing bracket, type placeholder="example " required. Change the type to tel: type="tel". The ios will present a number keyboard. <label for="phone">phone</label> 2

13 <input type="tel" name="phone" id="phone" placeholder="example " required> 2. Return to Code View and locate the textarea tag. 3. Within the opening textarea tag, type the attribute maxlength and give it a value of 000. This will limit the number of characters the user can input to 000. <label for="comments">comments</label> <textarea name="comments" id="comments" cols="45" rows="5" maxlength=000></textarea> Adding CSS to the Form You can use the following example rules as a guide. The selectors are all Tag in Dreamweaver s dialog box. form { padding: 20px; margin-left: 5px; margin-top: 0px; } fieldset { margin-bottom: 0px; } legend { color: #6E2D0; font-size: 0%; padding-bottom: 0px; } Adding Attribute Selectors Adding HTML5 form attributes Now here is where it starts to get very interesting. In the past, styling forms has posed a challenge because of the fact that the input element includes just about every form object: textfields, submit buttons, radio buttons, etc. So if, for example, you wanted to add a width of 250 to the name, , and phone textfields, you would also see the width of the radio and submit buttons increase to that size as well. To avoid the problem, you would have to start adding classes to the various input elements. This would add extra markup to the page, and increase the amount of maintenance. This is where type attributes come to the rescue. You will remember that you added different types to the various input elements. We'll use these types within brackets [] to create attribute selectors. Then our styles will target specific input elements rather than all input elements. First we'll set the width of the name, , phone, and textarea for comments to 250. We'll even add in some CSS3 rounded corners. Finally we'll use a CSS3 color format 3

14 RGBA to add varying amounts of opacity to the gold color of our color scheme.. Create a Compound selector named textarea, input[type="text"], input[type=" "], input[type="tel"] (This may be easier to do by hand coding it into the style sheet itself.) 2. Add a width of 250px. 3. Set the Display to Block. (This will put the fields themselves on different lines than their labels and give us a neater appearance.) 4. Add border-radius in its three formats (while Safari 5 now uses border-radius rather than needing the webkit extension, there are still users with older versions of Safari). You can use Code Hints in Code View, or you can use the Properties for panel in Dreamweaver. If you use the Properties for panel, click Add Property and one at a time type in border-radius, -webkit-border-radius, and -moz-border-radius on the left (you can also use the dropdown list in the left column to enter border-radius, but not the webkit or moz versions). You'll then get for each an icon next to the value field that when clicked gives you a visual interface for adding corner dimensions. Here are the values to add: -moz-border-radius: 0px -webkit-border-radius: 0px border-radius: 0px 5. Click OK. 6. Double-click the new selector in the CSS Styles Panel. 7. Select the Background category on the left. 8. Click the color swatch next to the Background-color property. 9. Click the Arrow icon on the top right. 0. Locate the Color Format command at the bottom of the Options menu.. Select rgba(). 2. Now with your cursor as eye dropper, sample the color you want to use or choose one in the color swatch. Dreamweaver will write the RGB values for that color. 3. Change the (this is full opacity, and 0 is completely transparent) in the A (or AlphaTransparency channel) to 0.5. This will be 50% opacity, thus giving us a paler shade of our color. RBGA color is very handy for layering elements. For example, you can layer a box with text that is partially transparent over an image to see some of the image peaking through. 4. Go back to the style sheet to add a bit of hand coding. 5. Copy the new rgba background-color rule. 6. Paste the copy above the first rgba rule. 7. Delete the 0.5 alpha channel. Internet Explorer 6, 7, and 8 don't understand it. We will put an rgb rule before the rgba rule, which IE will understand as long 4

15 as there is no alpha channel listed. It will pass over the second property and value. textarea, input[type="text"], input[type=" "], input[type="tel"]{ background-color: rgb(247,239,0); background-color: rgba(247,239,0,0.5); width: 250px; display:block; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; } The Submit Button. Create a new Compound selector named input[type="submit"]. 2. Select the Background category on the left. 3. Select the Arrow icon on the right top side of the swatches. 4. Select Color Format from the contextual menu. 5. Revert back to hex (Dreamweaver remembers the last format you used): Sixdigit hex. 6. Use the Eye Dropper to once again sample the your color. 7. Select the Box category on the left. 8. Set the width to 75px. 9. Set the padding (all sides) to 4px. 0. Set the margin-top to 0px.. Select the Border category on the left. 2. Set the border all around with the following values: solid px [your color] input[type="submit"] { background-color:border: solid px #000; width: 75px; padding: 4px; margin-top: 0px; margin-bottom: 0px; background: #DED604; border: px solid #65442; } Your Portfolio or Gallery Adding a Gallery to the Site Follow the appropriate tutorial: Lightbox, Accordion, or jquery Slideshow. Note: If you use Lightbox, you will have to make the a img rule that makes image links block elements more specific. Otherwise, the Lightbox thumbnail images that are links will become block instead of inline. /* Make this more specific for the Lightbox images as 5

16 links */ header a img { border: none; display: block; } 6

GDES218 Graphic Design for the Web

GDES218 Graphic Design for the Web Using the Web Font in Dreamweaver CC Now that you have a custom font, you will use the Dreamweaver CC Manage Fonts feature to make adding the font to your pages as easy as adding a font from your own computer.

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

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

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

Website Development with HTML5, CSS and Bootstrap

Website Development with HTML5, CSS and Bootstrap Contact Us 978.250.4983 Website Development with HTML5, CSS and Bootstrap Duration: 28 hours Prerequisites: Basic personal computer skills and basic Internet knowledge. Course Description: This hands on

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

Guidelines for doing the short exercises

Guidelines for doing the short exercises 1 Short exercises for Murach s HTML5 and CSS Guidelines for doing the short exercises Do the exercise steps in sequence. That way, you will work from the most important tasks to the least important. Feel

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

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

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

Adobe Dreamweaver CS6 Digital Classroom

Adobe Dreamweaver CS6 Digital Classroom Adobe Dreamweaver CS6 Digital Classroom Osborn, J ISBN-13: 9781118124093 Table of Contents Starting Up About Dreamweaver Digital Classroom 1 Prerequisites 1 System requirements 1 Starting Adobe Dreamweaver

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

ADOBE VISUAL COMMUNICATION USING DREAMWEAVER CS5 Curriculum/Certification Mapping in MyGraphicsLab

ADOBE VISUAL COMMUNICATION USING DREAMWEAVER CS5 Curriculum/Certification Mapping in MyGraphicsLab ADOBE VISUAL COMMUNICATION USING DREAMWEAVER CS5 Curriculum/Certification Mapping in MyGraphicsLab OBJECTIVES- 1.0 Setting Project Requirement 1.1 Identify the purpose, audience, and audience needs for

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

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder.

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Lesson 1 using Dreamweaver CS3 To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Click here to get images for your web page project. (Note:

More information

Fish Eye Menu DMXzone.com Fish Eye Menu Manual

Fish Eye Menu DMXzone.com Fish Eye Menu Manual Fish Eye Menu Manual Page 1 of 33 Index Fish Eye Menu Manual... 1 Index... 2 About Fish Eye Menu... 3 Features in Detail... 4 Integrated in Dreamweaver... 6 Before you begin... 7 Installing the extension...

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

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

Dreamweaver: Web Forms

Dreamweaver: Web Forms Dreamweaver: Web Forms Introduction Web forms allow your users to type information into form fields on a web page and send it to you. Dreamweaver makes it easy to create them. This workshop is a follow-up

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

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

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

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

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

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148 Index Numbers & Symbols (angle brackets), in HTML, 47 : (colon), in CSS, 96 {} (curly brackets), in CSS, 75, 96. (dot), in CSS, 89, 102 # (hash mark), in CSS, 87 88, 99 % (percent) font size, in CSS,

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

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

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

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

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

Hands On: Dreamweaver CS3 NEW SPRY Widgets

Hands On: Dreamweaver CS3 NEW SPRY Widgets What is a Spry Widget? Spry widgets provide access to dynamic and interactive elements you might like to have on your Web page. These Spry elements include: Menu Bars Tabbed Panels Accordion Effects Collapsible

More information

Designing the Home Page and Creating Additional Pages

Designing the Home Page and Creating Additional Pages Designing the Home Page and Creating Additional Pages Creating a Webpage Template In Notepad++, create a basic HTML webpage with html documentation, head, title, and body starting and ending tags. From

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

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

Introduction to WEB PROGRAMMING

Introduction to WEB PROGRAMMING Introduction to WEB PROGRAMMING Web Languages: Overview HTML CSS JavaScript content structure look & feel transitions/animation s (CSS3) interaction animation server communication Full-Stack Web Frameworks

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

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

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6 CS 350 COMPUTER/HUMAN INTERACTION Lecture 6 Setting up PPP webpage Log into lab Linux client or into csserver directly Webspace (www_home) should be set up Change directory for CS 350 assignments cp r

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

WEB DESIGNING COURSE SYLLABUS

WEB DESIGNING COURSE SYLLABUS F.A. Computer Point #111 First Floor, Mujaddadi Estate/Prince Hotel Building, Opp: Okaz Complex, Mehdipatnam, Hyderabad, INDIA. Ph: +91 801 920 3411, +91 92900 93944 040 6662 6601 Website: www.facomputerpoint.com,

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

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

Dreamweaver CS6. Table of Contents. Setting up a site in Dreamweaver! 2. Templates! 3. Using a Template! 3. Save the template! 4. Views!

Dreamweaver CS6. Table of Contents. Setting up a site in Dreamweaver! 2. Templates! 3. Using a Template! 3. Save the template! 4. Views! Dreamweaver CS6 Table of Contents Setting up a site in Dreamweaver! 2 Templates! 3 Using a Template! 3 Save the template! 4 Views! 5 Properties! 5 Editable Regions! 6 Creating an Editable Region! 6 Modifying

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

Dreamweaver CS4. Introduction. References :

Dreamweaver CS4. Introduction. References : Dreamweaver CS4 Introduction References : http://help.adobe.com 1 What s new in Dreamweaver CS4 Live view Dreamweaver CS4 lets you design your web pages under realworld browser conditions with new Live

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

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Just so you know: Things You Can t Do with Word... 1 Get Organized... 1 Create the

More information

Universal CSS Navigation Menu: Advanced Styling Patrick Julicher Universal CSS Navigation Menu: Advanced Styling

Universal CSS Navigation Menu: Advanced Styling Patrick Julicher Universal CSS Navigation Menu: Advanced Styling Universal CSS Navigation Menu: Advanced Styling Page 1 of 15 Content 1. Introduction... 3 2. How to use... 3 2.1. Editing existing CSS Styles... 3 2.2. Creating new CSS Styles... 6 3. Explanation of styles...

More information

2. In the Start and End Dates section, use the Calendar icon to change the Displayed Start Date to 1/1/2015 and the Displayed End Date to 5/31/2015.

2. In the Start and End Dates section, use the Calendar icon to change the Displayed Start Date to 1/1/2015 and the Displayed End Date to 5/31/2015. Tutorials Lesson 1 - Format a Schedule In this lesson you will learn how to: Change the schedule s date range. Change the date headings. Change the schedule dimensions. Change the legend and add a new

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 7 Dynamic HTML Dynamic HTML (DHTML) is a term that refers to website that use a combination of HTML, scripting such as JavaScript, CSS and the Document Object Model (DOM). HTML and

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

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

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

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

HTML Forms. 10 September, Dr Derek Peacock. This is a short introduction into creating simple HTML forms. Most of the content is

HTML Forms. 10 September, Dr Derek Peacock. This is a short introduction into creating simple HTML forms. Most of the content is This is a short introduction into creating simple HTML forms. Most of the content is based on HTML, with a few HTML5 additions. 1 Forms should be given a Name and an ID to make it easier to code their

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

Here are some links to get you started in learning more about CSS3 media queries and responsive web design:

Here are some links to get you started in learning more about CSS3 media queries and responsive web design: of 8 The HTML5 CSS Starter Page Series - Part 13: CSS3 Media Queries and the Mobile Web By: Sheri German In the last installment of the HTML5 CSS Starter Page series, we completed the Stringendo Studios

More information

CSS. Shan-Hung Wu CS, NTHU

CSS. Shan-Hung Wu CS, NTHU CSS Shan-Hung Wu CS, NTHU CSS Zen Garden 2 Outline The Basics Selectors Layout Stacking Order 3 Outline The Basics Selectors Layout Stacking Order 4 Grammar selector { property: value; 5 Example /* for

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

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

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

HTML5. HTML5 Introduction. Form Input Types. Semantic Elements. Form Attributes. Form Elements. Month Number Range Search Tel Url Time Week

HTML5. HTML5 Introduction. Form Input Types. Semantic Elements. Form Attributes. Form Elements. Month Number Range Search Tel Url Time Week WEB DESIGNING HTML HTML - Introduction HTML - Elements HTML - Tags HTML - Text HTML - Formatting HTML - Pre HTML - Attributes HTML - Font HTML - Text Links HTML - Comments HTML - Lists HTML - Images HTML

More information

About Codefrux While the current trends around the world are based on the internet, mobile and its applications, we try to make the most out of it. As for us, we are a well established IT professionals

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

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

Introducing Cascading Style Sheets. Cascading Style Sheet Basics Creating Styles Using Styles Manipulating Styles Text Formatting with CSS

Introducing Cascading Style Sheets. Cascading Style Sheet Basics Creating Styles Using Styles Manipulating Styles Text Formatting with CSS Introducing Cascading Style Sheets Cascading Style Sheet Basics Creating Styles Using Styles Manipulating Styles Text Formatting with CSS Cascading Style Sheet Basics CSS has many benefits: The pages look

More information

ADOBE 9A Adobe Dreamweaver CS4 ACE.

ADOBE 9A Adobe Dreamweaver CS4 ACE. ADOBE 9A0-090 Adobe Dreamweaver CS4 ACE http://killexams.com/exam-detail/9a0-090 ,D QUESTION: 74 You use an image throughout your Web site. You want to be able to add this image to various Web pages without

More information

HTML & CSS. SWE 432, Fall 2017 Design and Implementation of Software for the Web

HTML & CSS. SWE 432, Fall 2017 Design and Implementation of Software for the Web HTML & CSS SWE 432, Fall 2017 Design and Implementation of Software for the Web HTML: HyperText Markup Language LaToza Language for describing structure of a document Denotes hierarchy of elements What

More information

Advanced Dreamweaver CS6

Advanced Dreamweaver CS6 Advanced Dreamweaver CS6 Overview This advanced Dreamweaver CS6 training class teaches you to become more efficient with Dreamweaver by taking advantage of Dreamweaver's more advanced features. After this

More information

TUTORIAL MADCAP FLARE Tripane and PDF

TUTORIAL MADCAP FLARE Tripane and PDF TUTORIAL MADCAP FLARE 2018 Tripane and PDF Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

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

Adobe Dreamweaver. Essentials of Adobe Dreamweaver. Classroom Course Manual

Adobe Dreamweaver. Essentials of Adobe Dreamweaver. Classroom Course Manual Adobe Dreamweaver Essentials of Adobe Dreamweaver Classroom Course Manual Written, designed, and produced by: DoIT Software Training for Students Last Updated //07 About Software Training for Students

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

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

[PACKT] HTML5, CSS3, and jquery. Dreamweaver CS5.5 Mobile. and Web Development with

[PACKT] HTML5, CSS3, and jquery. Dreamweaver CS5.5 Mobile. and Web Development with Dreamweaver CS5.5 Mobile and Web Development with HTML5, CSS3, and jquery Harness the cutting edge features of Dreamweaver for mobile and web development David Karl ins [PACKT] PUBLISHING BIRMINGHAM -

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

ver Wfl Adobe lif Sams Teach Yourself Betsy Bruce Robyn Ness SAMS 800 East 96th Street, Indianapolis, Indiana, USA WlM John Ray ^lg^

ver Wfl Adobe lif Sams Teach Yourself Betsy Bruce Robyn Ness SAMS 800 East 96th Street, Indianapolis, Indiana, USA WlM John Ray ^lg^ Betsy Bruce John Ray Robyn Ness Sams Teach Yourself Adobe Wfl lif ver W ^msssi^ mm WlM ^lg^ SAMS 800 East 96th Street, Indianapolis, Indiana, 46240 USA Table of Contents Introduction What Is Dreamweaver

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

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

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

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

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

INTRODUCTION TO CSS. Topics MODULE 5

INTRODUCTION TO CSS. Topics MODULE 5 MODULE 5 INTRODUCTION TO CSS Topics > Cascading Style Sheets (CSS3) Basics Adding a Style Sheet Selectors Adding Dynamic Styles to Elements CSS3 Properties CSS3 Box Model Vendor Prefixes Cascading Style

More information

CS7026 CSS3. CSS3 Graphics Effects

CS7026 CSS3. CSS3 Graphics Effects CS7026 CSS3 CSS3 Graphics Effects What You ll Learn We ll create the appearance of speech bubbles without using any images, just these pieces of pure CSS: The word-wrap property to contain overflowing

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

IBM Forms V8.0 Custom Themes IBM Corporation

IBM Forms V8.0 Custom Themes IBM Corporation IBM Forms V8.0 Custom Themes Agenda 2 Overview Class Names How to Use Best Practice Styling Form Items Test Custom CSS Sample Overview 3 To create custom theme you must be familiar with the basic concept

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

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

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

Programmazione Web a.a. 2017/2018 HTML5

Programmazione Web a.a. 2017/2018 HTML5 Programmazione Web a.a. 2017/2018 HTML5 PhD Ing.Antonino Raucea antonino.raucea@dieei.unict.it 1 Introduzione HTML HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text

More information

Café Soylent Green Chapter 12

Café Soylent Green Chapter 12 Café Soylent Green Chapter 12 This version is for those students who are using Dreamweaver CS6. You will be completing the Forms Tutorial from your textbook, Chapter 12 however, you will be skipping quite

More information

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX KillTest Q&A Exam : 9A0-803 Title : Certified Dreamweaver 8 Developer Exam Version : DEMO 1 / 7 1. What area, in the Insert bar, is intended for customizing and organizing frequently used objects? A. Layout

More information

CSS Cascading Style Sheets

CSS Cascading Style Sheets CSS Cascading Style Sheets site root index.html about.html services.html stylesheet.css images boris.jpg Types of CSS External Internal Inline External CSS An external style sheet is a text document with

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

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

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

ENGINEERING DATA HUB VISUAL DESIGN SPECIFICATIONS VERSION 3. Created: 2/10/2017

ENGINEERING DATA HUB VISUAL DESIGN SPECIFICATIONS VERSION 3. Created: 2/10/2017 ENGINEERING DATA HUB VISUAL DESIGN SPECIFICATIONS VERSION 3 Created: 2/10/2017 Table of Contents ENGINEERING DATA HUB... 1 DESKTOP VIEW... 3 HEADER... 4 Logo... 5 Main Title... 6 User Menu... 7 Global

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

Computer Applications Data Processing

Computer Applications Data Processing Lesson 4: Changing the Workbook Appearance Microsoft Excel 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO Format cells. Define styles. Apply workbook themes and Excel table styles. Make numbers easier to

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