ITEC 745 Instructional Web Authoring I Instructor: Ray Cole Week 12.

Slides:



Advertisements
Similar presentations
3.02D HTML Overview 3.02 Develop webpages.
Advertisements

Chapter 1: Introduction. Contents Whats New in Dreamweaver CS4? The Dreamweaver CS4 Interface Setting Up a Site Creating a Web Page Adding Text to Your.
Working with Tables for Page Design – Lesson 41 Working with Tables for Page Design Lesson 4.
Learning the Basics – Lesson 1
Cascading Style Sheets
Chapter 3 – Designing your web pages Dr. Stephanos Mavromoustakos.
Web Development & Design Foundations with XHTML Chapter 7 Key Concepts.
ITEC 745 Instructional Web Authoring I Instructor: Ray Cole Week 6.
Web Design with Cascading Style Sheet Lan Vu. Overview Introduction to CSS Designing CSS Using Visual Studio to create CSS Using template for web design.
Introducing Cascading Style Sheets  Cascading Style Sheet Basics  Creating Styles  Using Styles  Manipulating Styles  Text Formatting with CSS.
CIS101 Introduction to Computing Week 06. Agenda Your questions Resume project HTML Project Two This week online Next class.
CIS101 Introduction to Computing HTML Project Two.
Macromedia Dreamweaver 4 Advanced Level Course. Add Rollovers Rollovers or mouseovers are possibly the most popular effects used in designing Web pages.
CIS101 Introduction to Computing Week 06. Agenda Your questions Resume project HTML Project Two This week online Next class.
Chapter 19 – Macromedia Dreamweaver MX 2004
With Alex Conger – President of Webmajik.com FrontPage 2002 Level I (Intro & Training) FrontPage 2002 Level I (Intro & Training)
Designing a Classroom Web Site Using NVU Beginning Level.
Getting Started with Dreamweaver
Chapter 4 Dreamweaver: Part II The Web Warrior Guide to Web Design Technologies.
Web Design HTML, Frontpage, DreamWeaver μέρος β ΠΡΥ019 - Πληροφορική Δρ.Βάσος Βασιλείου.
Lesson 13: Building Web Forms Introduction to Adobe Dreamweaver CS6 Adobe Certified Associate: Web Communication using Adobe Dreamweaver CS6.
Chapter 3 Working with Text and Cascading Style Sheets.
Macromedia Dreamweaver CS4 Tutorial. Example of the website1 folder & images folder inside Create a folder on your computer called website1 to hold all.
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
Using Dreamweaver. Slide 1 Dreamweaver has 2 screens that do different things The Document window where you create your WebPages The Site window where.
Chapter 3 Dreamweaver: Part I The Web Warrior Guide to Web Design Technologies.
Dreamweaver CS4 Concepts and Techniques Chapter 7 Page Layout with Frames.
© Cheltenham Computer Training 2001 Macromedia Dreamweaver 4 - Slide No 1 Macromedia Dreamweaver 4 Advanced Level Course.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
CSS Sprites. What are sprites? In the early days of video games, memory for graphics was very low. So to make things load quickly and make graphics look.
IT Introduction to Website Development Welcome!
WEB DESIGN USING DREAMWEAVER. The World Wide Web –A Web site is a group of related files organized around a common topic –A Web page is a single file.
1 Macromedia Dreamweaver Outline Introduction Macromedia Dreamweaver Text Styles Images and Links Symbols and Lines Tables Forms Scripting in Dreamweaver.
Intro to Dreamweaver Web Design Section 7-1 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course.
Website Development with Dreamweaver
ITEC 745 Instructional Web Authoring I Instructor: Ray Cole Week 8.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
XP Dreamweaver 8.0 Tutorial 3 1 Adding Text and Formatting Text with CSS Styles.
Copyright © 2013 MyGraphicsLab / Pearson Education STRUCTURE AND HTML TAGS MyGraphicsLab: Adobe Dreamweaver CS6 ACA Certification Preparation for Web Communication.
Creating Web Pages with Links, Images, and Formatted Text
Web Site Design Marion Setton
Dreamweaver CS4 Concepts and Techniques Chapter 2 Adding Web Pages, Links, and Images.
Use CSS to Implement a Reusable Design Selecting a Dreamweaver CSS Starter Layout is the easiest way to create a page with a CSS layout You can access.
ITEC 745 Instructional Web Authoring I Instructor: Ray Cole Week 10.
Introducing Cascading Style Sheets. Cascading Style Sheet Basics  Cascading Style Sheet Basics  Creating Styles  Using Styles  Manipulating Styles.
211 Multimedia Web Design Lesson 5/6 Dreamweaver Practice.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
Tutorial 3 Adding and Formatting Text with CSS Styles.
ITEC 745 Instructional Web Authoring I Instructor: Ray Cole Week 12.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Lesson 6 Links. Creating Folders  For every web site/page, you need to create a separate folder  The computer cannot find links if they are not stored.
Introducing Dreamweaver. Dreamweaver The web development application used to create web pages Part of the Adobe creative suite.
1 Creating Links Lesson 2. 2 In the center column type : Home | Order Now | Contact Us This is the navigation button which will link to the other pages.
1 Preparation for site Create a folder in MyDocuments: beavercheese. Create a subfolder, images Classes, career, DW beginner Download.
Creating and Editing a Web Page Using Inline Styles
Building a Website: Layout Fall Overall Structure: Home Page Title Section Title Frame Picture UNCP Math Menu Content Footer Contact Information.
Web and Multimedia Development Copyright © Genetic Computer School 2007WM LESSON OVERVIEW  Use of Tables  Creating Tables  Try It – 1  Creating.
Creating Web Pages with Links, Images, and Embedded Style Sheets
Getting Started with Dreamweaver
Dreamweaver – Setting up a Site and Page Layouts
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
With Microsoft FrontPage 2000
Intro to Dreamweaver Web Design Section 8-1
Learning the Basics – Lesson 1
USING DREAMWEAVER Contents: Assigning a Root Folder
Styles and the Box Model
Create and edit web pages 2
USING DREAMWEAVER MX 2004 Contents: Assigning a Root Folder
Getting Started with Dreamweaver
Training & Development
Presentation transcript:

ITEC 745 Instructional Web Authoring I Instructor: Ray Cole Week 12

Recall from 3 Weeks Ago: Multiple Choice Page-Type: Graphic Hyperlinks, CSS Box Model

Multiple Choice Page-Type Instructions in the left column Questions in the right column

Multiple Choice Page-Type Checkboxes are graphics embedded into the page with the tag: checkbox_checked.gif checkbox.gif Feedback is placed in a red box when the learner chooses an incorrect answer. This box is implemented purely with CSS:.answer_box_no { padding: 10px; width: 610px; border: 2px solid #ec3333; }

Multiple Choice Page-Type Feedback is placed in a green box when the learner chooses a correct answer. This box is implemented purely with CSS:.answer_box_yes { width: 610px; border: 2px solid #009933; padding: 10px; } Checkbox graphics are surrounded with anchor tags ( ) to make them clickable. Each is a link to a new page.

Multiple Choice Page-Type The Next button is a graphic, wrapped between and tags.

Multiple Choice Page-Type To prevent a blue outline from appearing around the checkboxes and the next and back buttons, you have to give the tag an attribute of border=“0”. This can be done in the Dreamweaver Properties panel for each image, which is also where you can turn the graphic into a link.

Multiple Choice Page-Type The answer block is indented because a CSS “indented” class is applied to it:.indented { margin-left: 1em; }

Multiple Choice Page-Type As before, the checkboxes are graphics ( tags with border=“0” attributes), surrounded by anchor tags to make them clickable. To give them a little bit of visual “breathing room”, these images also have an hspace=“3” attribute to prevent the text from pressing right up against them. The back button, like each checkbox, is a gif image. It is surrounded by and tags to make it clickable.

This Week: Writing Style Guidelines, File and Folder Management, URL Details

Writing for E-learning

Passive vs. Active Voice Passive VoiceActive Voice In 1952, a crucial experiment on bacteriophage (bak-tee’-ree-oh-fayj), a variety of virus that infests bacterial cells, was performed by two biochemists, Alfred D. Hershey and M. Chase. A cell is entered by one, multiplication occurs so that the viruses become numerous, and finally the cell is killed by them. The cell membrane is burst and, where the cell had been entered by one virus, emergence is done by many. In 1952, two biochemists, Alfred D. Hershey and M. Chase, performed a crucial experiment on bacteriophage (bak-tee’-ree- oh-fayj), a variety of virus that infests bacterial cells. They enter a cell, multiply and become numerous, and finally kill the cell. The cell membrane bursts and, where one virus had entered, many emerge. Here are two versions of the same paragraph, adapted from page 101 of Isaac Asimov’s 1962 book, The Genetic Code: Asimov’s version of this paragraph is the one in the “Active Voice” column. Why is it so much easier to read and understand than the one in the “Passive Voice” column? Read: to learn morehttp://

Available at the class web site: –ITEC 745 Point of View.doc –ITEC 745 Describing Screen Elements.doc –ITEC 745 Bulleted Lists.doc –ITEC 745 ID Style and Writing Checklist See: ITEC 715 Writing Handouts

Intro Portion of Text Spoken in a Botony Computer Game ITEC 715 Addressing the Learner/Avoiding Passive Voice Formal Version: “This program is about what type of plants survive on different planets. For each planet, a plant will be designed. The goal is to learn what type of roots, stem, and leaves allow the plant to survive in each environment. Some hints are provided throughout the program.” Personalized Version: “You are about to start a journey where you will be visiting different planets. For each planet, you will need to design a plant. Your mission is to learn what type of roots, stem, and leaves will allow your plant to survive in each environment. I will be guiding you through by giving out some hints.” From: Moreno, R., and Mayer, R.E. (2000). Engaging Students in Active Learning: The Case for Personalized Multimedia Messages. Journal of Educational Psychology, 93, (as reported in Ruth Clark and Richard Mayer’s book E-Learning and the Science of Instruction, page 137)

Four other similar studies surveyed Results? Clark & Mayer report: –“In five out of five studies, students who learned with personalized text performed better on subsequent transfer tests than students who learned with formal text” [p ] –“Overall, participants in the personalized group produced between 20 and 46 per cent more solutions to transfer problems than the formal group.” [p. 137] ITEC 715 Addressing the Learner/Avoiding Passive Voice

Other things you should standardize: –Use of fonts –Introduction of new terms –Introduction of new acronyms ITEC 715 More on Writing Style

Other things you should standardize: –Use of fonts –Introduction of new terms –Introduction of new acronyms ITEC 715 More on Writing Style

ITEC 715 Final Project Examples Last year, student topics included: –A beginner’s guide to painting

ITEC 715 Final Project Examples Last year, student topics included: –Creating a digital portfolio –Earthquake safety

ITEC 715 Final Project Examples Navigation: 2 Styles –Permanently on-screen in left column; or –On-screen only when learner clicks Main Menu button

Dreamweaver File and Folder Maintenance, URLs

Folder Management and URLs Your web root folder: public_html URL to your web root folder: account/ Segregate your ITEC 745 pages into a subfolder called “itec745” located directly under your web root. If you take other SFSU classes that require you to place web pages on your SFSU server space, then place them in another subfolder (e.g., “itec845”).

Folder Management and URLs Your web root folder: public_html URL to your web root folder: account/ URL to your itec745 subfolder: account/itec745 URL to a different class subfolder (e.g., itec845): account/itec845 In either case, your web root and site definition remain the same!

Folder Management and URLs Creating subfolders Right-click on your site

Folder Management and URLs Creating subfolders Click New Folder

Folder Management and URLs Creating subfolders Name your new folder itec745

Folder Management and URLs Creating subfolders Right-click on your new itec745 folder and choose New Folder from the pop-up menu

Folder Management and URLs Creating subfolders Name your new subfolder final_project. Place all your final project files (including your XHTML, CSS, and image files) in this folder or in subfolders under it. To do this, simply use Save As from the Dreamweaver menu when you are ready to save your file for the first time, and then browse to this final_project folder before clicking OK.

Each subfolder you create gets added to your URL. To reach web pages located in public_html/itec745/final_project: account/itec745/final_project/ E.g., to reach a page called “module2.html” located in the final_project subfolder, use the URL: account/itec745/final_project/module2.html ITEC 715 URLs and Subfolders

Sometimes people like to keep all of their image files in a separate folder, so their folder hierarchies look like this Web root itec745 final_project web_page.html CSS_page.css Images photo1.jpg next.gif back.gif ITEC 715 URLs and Subfolders

If web_page.html needs to display photo1.jpg, then the image tag must give either an absolute URL ( ) or must use “..” in a relative URL to “move up” in the file tree structure ( ) web root itec745 images photo1.jpg next.gif back.gif ITEC 715 URLs, Subfolders, and dot-dot final_project web_page.html css_file.css Web_page.html is in this folder. To name the path to photo1.jpg relative to the current folder, you have to first go “up” one folder level, to itec745, then “down” a different branch to images. Two dots (“..”) in a URL mean “go up one folder level”. So inside web_page.html, you have to use the relative URL “../images/photo1.jpg”

The SFSU web server is configured to let you browse the contents of any folder in your web space: ITEC 715 Special meaning of index.html

However, if you place a file with the special name index.html in a folder, the web server will send index.html whenever it receives a request to view a the folder that contains it. The first page of your course should be named index.html for this very reason. ITEC 715 Special meaning of index.html

Download the Final Project Guidelines from the class web site: Begin working on your final project! For Next Week