Dreamweaver Basics Workshop

Size: px
Start display at page:

Download "Dreamweaver Basics Workshop"

Transcription

1 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 You See is What You Get) editor The user can visually design a page, and code is automatically created

2 What is HTML and CSS? Do I need to know code to use Dreamweaver? You do not need to know how to code with HTML and CSS, but it definitely helps! We will explore very basic uses for Dreamweaver, but if you want to become proficient with the program you will eventually need to learn basic HTML and CSS. o Even Dreamweaver expert users need to go into the code and edit it directly sometimes I: Explore the User Interface Welcome Screen o The first thing you will notice is the Dreamweaver Welcome Screen This gives you access to many of the most common choices that you will be making in Dreamweaver, such as: Opening a recent item creating a new document watching an instructional video Let s go ahead and create a New HTML Document.

3 Standard Apple Menu Bar - at top of screen o This is at the top of the desktop on a Mac, but at the top of the window on a PC o There are the usual menu options (e.g. File, Edit, etc.) o Then there are menu items that are specific to Dreamweaver View Allows you to switch between code and design views (we will explore this later) Modify Lets you modify properties such as fonts, images, tables, etc. Format Has options for formatting text, including with both HTML and CSS Commands Offers advanced options for automating repetitive tasks, cleaning up HTML, etc. Site For creating new sites and managing existing ones Help Links you to Adobe s online support and tutorials

4 Application Toolbar - at top of Dreamweaver window o Three Dropdown Menus Layout Allows you to switch views quickly Extensions Let s you go and get widgets and extensions outside of Dreamweaver and add them to your project (e.g. a calendar widget) Site o Search feature Lets you create and manage sites Actually a help function o Workspace Menu Allows you to set a predefined workspace, as well as create your own We will experiment now with moving around panels in Dreamweaver 1. Choose Classic View. 2. Move around some panels. Close them. Don t worry. Mix everything up.

5 3. Now, when you want to get back to the default, Classic view, simply go to the Workspace dropdown menu and select Reset Classic. Voila! Document Toolbar o Located right above an open document o View options Code Screen shows only code Split Screen shows both code and design mode Design Screen only shows design mode (which is an editable visual representation of what the page will look like) Live View This displays what the document will look like in a web browser (but it is non- editable) Multiscreen Preview Lets you look at your webpage in a variety of screen sizes (e.g. desktop, tablet, smartphone) Preview in Browser Take a look at what your page will look like in Safari Chrome, etc.

6 Other advanced options File Management o Upload/download files to server Code Validator o Check to make sure your code is up to industry standards Browser Compatibility o To make sure that code will work across all major browsers Visual Aids o Turn on/off visual design aids Title Function Here you can give a title to your page! 1. Type the title that you d like in the box, then press enter 2. Now, go to the Preview in Browser icon and preview the page in a browser of your choice. a. Dreamweaver will prompt you to save your document. Save it to the desktop. b. The page will now open in the browser. Your title will be at the top of the window!

7 c. Now go over to the left of the document toolbar and change the view to Code view. In between the <head> tags, you will see <title> tags have been added by Dreamweaver, with your title in between. Property Inspector o Very important and often used tool in Dreamweaver o Allows you to change the properties of items in your document by altering the HTML or CSS Insert Panel o Another very useful tool. o This lets you insert objects into the document, while Dreamweaver generates the code for you. II: Create a New Project 1. Let s close the previous document that we were working with. Don t save it (unless you really want to ;D) 2. Note that now we have a blank screen. Where is the Welcome Screen? It only comes on when we start Dreamweaver. 3. So, to start a new document, select File > New.

8 4. In the window that opens, let s go ahead and keep our Page Type as HTML and our Layout as <none>. In the DocType dropdown, choose HTML5, as this is the latest HTML standard. 5. Now, click Create. That s it! III: Changing HTML structure 1. Explore headings a) Find some text online and copy and past it into the document in Design View. b) Select a line with your mouse. c) Go the Property Inspector d) In the Format dropdown, select Heading 1. e) You will see the text become larger and bolder. f) Look over to the code. You will see the Header 1 tags, <h1> and </h1>, surrounding your text. g) Play around with changing the Format option for other lines of text to make different headings. 2. Play with bold and italics a) Select some text, and make it bold or italic using the HTML section of the Property Inspector.

9 b) Look at the code after doing so. You will see how text that you have made bold is surrounded by <strong> tags, and text that is italic is surrounded by <em> tags. 3. Let s create some lists. a) Select some separate lines of text in Dreamweaver. b) Using the Property Inspector, make an Unordered List (a list that just has bullet points) by hitting the icon with the bullets. Note in the code view that your text is now surrounded by <ul> tags (<ul> for unordered list ). c) Now select your list and make it into an Ordered List. Now check out the code. The <ul> tags have now become <ol> tags (you guessed it, <ol> stands for ordered list ). d) These procedures have been similar to working in Microsoft Word. But it is not the same. We are providing HTML structure to our content. We are simply selecting text and hitting icons, but Dreamweaver is generating HTML code for us. IV: Adding Links o Of course the Internet is based upon hyperlinks. So let s make some. 1. Select a word that you d like to make a link. 2. Now go to the Insert Panel (up at the top in Classic View), and select the little icon that looks like a chain.

10 3. This brings up a dialog box. We can see that the text in the Text field is the text that we have selected. Now, copy a URL and paste it into the Link field. Press ok. 4. Preview your page in a browser. You now have a link. 5. If you want to make your link open up in a new tab, select the text again, and take a look at your Property Inspector. You will see a field for Target. Select _blank. Now the link will open in a new tab. 6. As always, check out how the code has changed. A pair of <a> tags are now surrounding the text that you made a link. Note the URL is inside of the opening <a> tag. Looking at the code after making a change in Dreamweaver is a good way to learn HTML code for beginners. V: Put an Image into Your Document 1. We are learning some good basics. But so far we just have a bunch of text. Let s add some pictures to make our webpages look interesting. 2. Find an image on Google Images and save it to your desktop. 3. In Design View, put your cursor where you would like to insert a picture. 4. Now, go to the Insert Panel, and insert the image by browsing to it and selecting it from your desktop. 5. Now you have added a picture. Look at the code, and see that an <img> tag has been added. Note the width and height attributes within the

11 <img> tag. Go back to Design view, and try resizing the picture by dragging on its corner. Watch the code in Code View change. 6. Let s make the image into a link! a. Click on your image in design view. b. The Property Inspector will change to show a thumbnail of your image with some options. c. You will see a field in which to enter a Link. d. Paste your URL in there and you re good to go! VI: Working with a Starter Document 1. So we have done some very basic stuff. But web layout gets more complicated and time consuming. If you want a head start in creating a webpage or website, start with one of the template documents that Dreamweaver features. 2. Let s close our HTML documents (save yours if you like). 3. Let s choose File > New 4. In the window that opens, make sure that your Page Type is still HTML, and that your DocType is HTML5. 5. Now look through the available Layouts. Choose the one that says 2 column fixed, left sidebar, header and footer. 6. First take a look at the Design View and get a sense of the page layout. Next, look at the Split screen, and check out the code. You will see that

12 there is a lot of code here. You will see some code at the top of the document that has some pink text at it s beginning. This is the CSS, which is used to style the page. The HTML is below the CSS. There is also some grayed out text. These are comments, which are intended to help the user understand more about the code. They are ignored by the browser and do not affect anything on the webpage when it is displayed. VII: Let s change some CSS here. o Change the background color 1. Find the CSS text that looks like this:.header { background- color: #00FF00; } Select it. Look at the CSS Styles panel on the right side of the interface. Note that it is showing our background color. 2. Click and hold on the color square and change the color. Note the change in the CSS code. o Change the size of an object 1. Select the content area of the page by left clicking on the corner of the main content area. You will see that the element is selected with a blue outline. 2. Go over to your CSS Panel, and look at the properties listed there. We see that the width is 780px. Let s imagine that we want to make the area where our text content displayed narrower.

13 3. Double click on 780px. 4. The CSS Rule Definition dialog box will open up. 5. Find the Width field, and change it to 300px. 6. Note the change in both the Design and code views! VIII: Congrats! You ve just made your first step towards learning web design. Of course, there s a lot more to be learned, so check out the Resources below. IX: Other Resources Check out these other resources to learn more about Dreamweaver: i. tutorial/ ii. lynda.com (TC students have a FREE membership!!) And check out these sites to learn more about HTML and CSS: iii. iv.

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

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

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

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

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

About Freeway. Freeway s Tools and Palettes

About Freeway. Freeway s Tools and Palettes About Freeway The most important thing to appreciate before you start a site in Freeway is how the process works, especially if you have tried other Web publishing software before. Freeway is not an HTML

More information

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

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

More information

Dreamweaver 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

Creating a Navigation Bar with a Rollover Effect

Creating a Navigation Bar with a Rollover Effect Creating a Navigation Bar with a Rollover Effect These instructions will teach you how to create your own navigation bar with a roll over effect for your personal website using Adobe Dreamweaver CS4. Your

More information

Authoring World Wide Web Pages with Dreamweaver

Authoring World Wide Web Pages with Dreamweaver Authoring World Wide Web Pages with Dreamweaver Overview: Now that you have read a little bit about HTML in the textbook, we turn our attention to creating basic web pages using HTML and a WYSIWYG Web

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

Dreamweaver CS5 Lab 4: Sprys

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

More information

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

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

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

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

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

Adobe Dreamweaver CS5/6: Learning the Tools

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

More information

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

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

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

More information

Lava New Media s CMS. Documentation Page 1

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

More information

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

PBWORKS - Student User Guide

PBWORKS - Student User Guide PBWORKS - Student User Guide Fall 2009 PBworks - Student Users Guide This guide provides the basic information you need to get started with PBworks. If you don t find the help you need in this guide, please

More information

SoftChalk 10. Level 1. University Information Technology Services. Learning Technologies, Training, Audiovisual, and Outreach

SoftChalk 10. Level 1. University Information Technology Services. Learning Technologies, Training, Audiovisual, and Outreach SoftChalk 10 Level 1 University Information Technology Services Learning Technologies, Training, Audiovisual, and Outreach Copyright 2018 KSU Division of University Information Technology Services This

More information

Joomla! Advanced Content Editing January 11, 2018

Joomla! Advanced Content Editing January 11, 2018 Joomla! Advanced Content Editing January 11, 2018 Instructor for this Workshop Web Development School of Arts and Sciences TABLE OF CONTENTS Welcome... 3 What is Joomla?... 3 Joomla Administrator Overview

More information

Introduction to the MODx Manager

Introduction to the MODx Manager Introduction to the MODx Manager To login to your site's Manager: Go to your school s website, then add /manager/ ex. http://alamosa.k12.co.us/school/manager/ Enter your username and password, then click

More information

Beginners Guide to Snippet Master PRO

Beginners Guide to Snippet Master PRO Beginners Guide to Snippet Master PRO This document assumes that Snippet Master has been installed on your site. If not please contact the Bakas IT web team at webreg@bakasit.com.au. Initial Login Screen...

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

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

Do It Yourself Website Editing Training Guide

Do It Yourself Website Editing Training Guide Do It Yourself Website Editing Training Guide Version 3.0 Copyright 2000-2011 Sesame Communications. All Rights Reserved. Table of Contents DIY Overview 3 What pages are editable using the DIY Editing

More information

Joomla! Frontend Editing

Joomla! Frontend Editing Joomla! Frontend Editing Instructor for this Workshop Web Development School of Arts and Sciences TABLE OF CONTENTS Welcome... 3 What is Joomla?... 3 Joomla Overview Login... 4 How is Joomla! Organized?...

More information

Lions Australia Oz Clubhouse Instructions Revised 14 Feb 2014

Lions Australia Oz Clubhouse Instructions Revised 14 Feb 2014 Introduction: Authorisation and Access: 1 Your Browser 2. Layout 3. Start Editing 4. Edit the Banner Title 5. Insert a Main Photo Lions Australia Oz Clubhouse Instructions Revised 14 Feb 2014 6. Using

More information

Click on the words Click to add subtitle and begin typing out your subtitle. You may also choose to add your name here rather than a subtitle.

Click on the words Click to add subtitle and begin typing out your subtitle. You may also choose to add your name here rather than a subtitle. PowerPoint Step-by-Step Sections: Getting Started Creating a Title Page Creating a Picture Page Creating a Bulleted Page Creating a Mixed Media Page Other General Notes Getting Started Open PowerPoint:

More information

Creating a Technical Writing Online Portfolio with Wikispaces.com

Creating a Technical Writing Online Portfolio with Wikispaces.com Creating a Technical Writing Online Portfolio with Wikispaces.com November 11, 2010 Hollie Cookson Tyler Kiefer Allison Knowles Andrew Neutzling 1 Table of Contents I. Getting Started A. Create a Wikispaces.com

More information

Dreamweaver. An Introduction to editing webpages

Dreamweaver. An Introduction to editing webpages Dreamweaver An Introduction to editing webpages Edited: 2/7/18 Salter, Sharina D Contents Session Description... 3 Overview... 3 Introduction to Dreamweaver... 3 Toolbar... 5 Getting Started... 6 Create

More information

Creating Teacher Webpages on the New APS WordPress Site

Creating Teacher Webpages on the New APS WordPress Site Creating Teacher Webpages on the New APS WordPress Site TABLE OF CONTENTS INTRODUCTION 3 THE EDITING DASHBOARD 4 CREATING A NEW PAGE 5 EDITING YOUR PAGE 6 1. Page Title 7 2. Toolbar/ toolbar icons 7 3.

More information

Creating a Website with Dreamweaver 4

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

More information

IT153 Midterm Study Guide

IT153 Midterm Study Guide IT153 Midterm Study Guide These are facts about the Adobe Dreamweaver CS4 Application. If you know these facts, you should be able to do well on your midterm. Dreamweaver users work in the Document window

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

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

PROFILE DESIGN TUTORIAL KIT

PROFILE DESIGN TUTORIAL KIT PROFILE DESIGN TUTORIAL KIT NEW PROFILE With the help of feedback from our users and designers worldwide, we ve given our profiles a new look and feel. The new profile is designed to enhance yet simplify

More information

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

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

More information

Google Sites 101. Mrs. Wilson

Google Sites 101. Mrs. Wilson Google Sites 101 Mrs. Wilson Google Sites 101 Create a site 1. Go to http://sites.google.com/ 2. Login with your Google Account [or Google Apps account] email address and password You can create a Google

More information

Creating and Publishing Faculty Webpages

Creating and Publishing Faculty Webpages Creating and Publishing Faculty Webpages The UNF Template The template we are using today provides a professional page that is easy to work with. Because the pages are already built, faculty members can

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

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

More information

OU EDUCATE TRAINING MANUAL

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

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2013

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

More information

Adding Text and Images. IMCOM Enterprise Web CMS Tutorial 1 Version 2

Adding Text and Images. IMCOM Enterprise Web CMS Tutorial 1 Version 2 Adding Text and Images IMCOM Enterprise Web CMS Tutorial 1 Version 2 Contents and general instructions PAGE: 3. First steps: Open a page and a block to edit 4. Edit text / The menu bar 5. Link to sites,

More information

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

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

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2007

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

More information

Create and edit word processing. Pages.

Create and edit word processing. Pages. Create and edit word processing documents with Pages. In this chapter, we begin to get work done on the ipad by using Pages to create and format documents. Creating a New Document Styling and Formatting

More information

The Dreamweaver Interface

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

More information

*monthly; log in to your wordpress dashboard and update plugins which are showing prompts to do so.

*monthly; log in to your wordpress dashboard and update plugins which are showing prompts to do so. *monthly; log in to your wordpress dashboard and update plugins which are showing prompts to do so. TRNA WORDPRESS LOGIN AND EDITING INSTRUCTIONS; 10/17/18 (see end of this document for web developer-level

More information

Architectural Engineering Senior Thesis CPEP Webpage Guidelines and Instructions

Architectural Engineering Senior Thesis CPEP Webpage Guidelines and Instructions Architectural Engineering Senior Thesis CPEP Webpage Guidelines and Instructions Your Thesis Drive (T:\) Each student is allocated space on the Thesis drive. Any files on this drive are accessible from

More information

Web Authoring Guide. Last updated 22 February Contents

Web Authoring Guide. Last updated 22 February Contents Web Authoring Guide Last updated 22 February 2016 Contents Log in................................ 2 Write a new post...3 Edit text...4 Publish a post...5 Create a link...6 Prepare photographs...7 Insert

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

Embedding and linking to media

Embedding and linking to media Embedding and linking to media Dreamweaver makes it incredibly easy to embed and link media files (these include audio files and movie files) into your web site. We ll start with linking. Linking to media

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

documentation Editing Files and Folders

documentation Editing Files and Folders Editing Files and Folders documentation The advantage to working with a content management system (CMS) is that we are editing text; no markup code is necessary. In this document we ll discuss: I. Access

More information

New website Training:

New website Training: New website Training: Table of Contents 1. Logging in and out of the new site. 2. Edit Content a. How to edit content b. Paragraph types c. Adding links d. Adding an image e. Adding a document f. Saving

More information

MS Word Basics. Groups within Tabs

MS Word Basics. Groups within Tabs MS Word Basics Instructor: Bev Alderman L e t s G e t S t a r t e d! Open and close MS Word Open Word from the desktop of your computer by Clicking on the Start>All programs>microsoft Office >Word 2010

More information

Classroom Blogging. Training wiki:

Classroom Blogging. Training wiki: Classroom Blogging Training wiki: http://technologyintegrationshthornt.pbworks.com/create-a-blog 1. Create a Google Account Navigate to http://www.google.com and sign up for a Google account. o Use your

More information

Creating an with Constant Contact. A step-by-step guide

Creating an  with Constant Contact. A step-by-step guide Creating an Email with Constant Contact A step-by-step guide About this Manual Once your Constant Contact account is established, use this manual as a guide to help you create your email campaign Here

More information

ifeature Pro Documentation for ifeature v1.1.2 (last updated 5/04/2011)

ifeature Pro Documentation for ifeature v1.1.2 (last updated 5/04/2011) 1 ifeature Pro Documentation for ifeature v1.1.2 (last updated 5/04/2011) TABLE OF CONTENTS: if Topic Page(s) Installing ifeature Pro 2 Updating ifeature Pro 3 Using the Menu 4 ifeature Pro Layout Templates

More information

DREAMWEAVER QUICK START TABLE OF CONTENT

DREAMWEAVER QUICK START TABLE OF CONTENT DREAMWEAVER QUICK START TABLE OF CONTENT Web Design Review 2 Understanding the World Wide Web... 2 Web Browsers... 2 How Browsers Display Web pages... 3 The Web Process at Sacramento State... 4 Web Server

More information

TinyMCE Users Guide. This user manual will show you all the basics of the TinyMCE editor.

TinyMCE Users Guide. This user manual will show you all the basics of the TinyMCE editor. Introduction TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor. What this means is that it will let you create html content on your web site. TinyMCE supports a lot of Operation

More information

How to create and send a new . NOTE: See different guide for repurposing an existing

How to create and send a new  . NOTE: See different guide for repurposing an existing How to create and send a new email NOTE: See different guide for repurposing an existing email 1 Log into marketo at https://rufsso.rutgers.edu/ 2 Remember You will need a NetID and password to log in

More information

Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear.

Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear. Users Guide Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear. Select an insert size When creating a new project, the first thing you

More information

Web Publishing Basics I

Web Publishing Basics I Web Publishing Basics I Jeff Pankin Information Services and Technology Contents Course Objectives... 2 Creating a Web Page with HTML... 3 What is Dreamweaver?... 3 What is HTML?... 3 What are the basic

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

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

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

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

More information

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

Creating an with Constant Contact. A step-by-step guide

Creating an  with Constant Contact. A step-by-step guide Creating an Email with Constant Contact A step-by-step guide About this Manual Once your Constant Contact account is established, use this manual as a guide to help you create your email campaign Here

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

Microsoft Word 2011 Tutorial

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

More information

NVU Web Authoring System

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

More information

PowerPoint 2016 Building a Presentation

PowerPoint 2016 Building a Presentation PowerPoint 2016 Building a Presentation What is PowerPoint? PowerPoint is presentation software that helps users quickly and efficiently create dynamic, professional-looking presentations through the 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

BT Web Hosting. Features and functionality

BT Web Hosting. Features and functionality BT Web Hosting Features and functionality 1 Hopefully you will now have a website that is activated and potentially even published. This guide will take you through some of the additional features and

More information

Website Creating Content

Website Creating Content CREATING WEBSITE CONTENT As an administrator, you will need to know how to create content pages within your website. This document will help you learn how to: Create Custom Pages Edit Content Areas Creating

More information

Title and Modify Page Properties

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

More information

INFORMATION TECHNOLOGY

INFORMATION TECHNOLOGY INFORMATION TECHNOLOGY PowerPoint Presentation Section Two: Formatting, Editing & Printing Section Two: Formatting, Editing & Printing By the end of this section you will be able to: Insert, Edit and Delete

More information

PBWORKS - Student User Guide

PBWORKS - Student User Guide PBWORKS - Student User Guide Spring and Fall 2011 PBworks - Student Users Guide This guide provides the basic information you need to get started with PBworks. If you don t find the help you need in this

More information

Quick Access Toolbar. You click on it to see these options: New, Open, Save, Save As, Print, Prepare, Send, Publish and Close.

Quick Access Toolbar. You click on it to see these options: New, Open, Save, Save As, Print, Prepare, Send, Publish and Close. Opening Microsoft Word 2007 in the practical room UNIT-III 1 KNREDDY 1. Nyelvi beállítások az Office 2007-hez (Language settings for Office 2007 (not 2003)) English. 2. Double click on the Word 2007 icon

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

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

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

A TUTORIAL ON WORD. Katie Gregory

A TUTORIAL ON WORD. Katie Gregory A TUTORIAL ON WORD Katie Gregory First, CLICK HERE Then, find Microsoft Word under programs and the Microsoft Office 2013 Folder This is what the document should look like when opened. SAVING A WORD DOCUMENT

More information

Welcome to the wonderful world of Dreamweaver 8. If you re an experienced

Welcome to the wonderful world of Dreamweaver 8. If you re an experienced Chapter 1 Introducing Your New Best Friend In This Chapter Introducing the new features of Dreamweaver 8 Examining your Web site objectives Finding your way around in Dreamweaver Welcome to the wonderful

More information

Microsoft Word 2007 on Windows

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

More information

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

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

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

More information

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page Creating a Web Page using Mozilla Composer- A Free Open Source Application Emily Hebard IT Lab School of Information University of Texas at Austin Spring 2003 Objectives Orient to the Mozilla Composer

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

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

Creating a Website with Publisher 2016

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

More information

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