Lesson Plan. Course Title: Web Technologies

Size: px
Start display at page:

Download "Lesson Plan. Course Title: Web Technologies"

Transcription

1 Lesson Plan Course Title: Web Technologies Lesson Duration: 2 hours Session Title: Website Forms / Data Acquisition (NOTE: This lesson should follow the HTML Scripting Lesson) Performance Objective: Upon completion of the lesson, students will be able to collect data from websites and send the data to the appropriate script for processing. Specific Objectives: Students will understand how information is collected online. Students will be able to create forms on their web pages. Students will be able to select the appropriate form field based on the type of information being collected. Preparation TEKS Correlations: 8A Recognize the importance of Internet programming standards; 8C Use standard applications such as text-based programs, word processors; and web authoring software; 9G Demonstrate the ability to construct secure transaction interfaces from the web server to the customer. Instructor / Trainer References: Content Developer Knowledge Instructional Aids: Presentation on Form Processing & Data Acquisition Materials Needed: Presentation printed in Notes format for each student. Code sample handout printed for each student Form Lab Exercise 1 printed for each student. Form Lab Exercise 2 printed for each student End of Lesson Quiz (and Quiz Key) Equipment Needed: Digital Projector to show presentation Individual computers with Internet access for each student Learner

2 MI Introduction Introduction (LSI Quadrant I): Show the students a web page with a form such as a web-based form, or a search engine site, or a site with a registration form. Discuss how giving a web site the ability to collect information from the visitor increases the usefulness and productivity of a web site substantially. Outline MI Outline (LSI Quadrant II): Instructor Notes: Introduction: Show students some websites with forms and discuss how useful the ability to collect data from the visitor can be. Creating Forms The form block and form tag Collecting Data / The input tag password field hidden fields reset button s es Collecting Data / The text area Collecting Data / Select menu Hands on individual practices Lab Exercise 1 Lab Exercise 2 End of Lesson Quiz MI Application Guided Practice (LSI Quadrant III): During the presentation, the students should create the forms demonstrated. The students should be provided with the Sample Code handouts. The Sample Code numbers in the presentation will correspond with the Sample Code numbers on the handout.

3 MI Independent Practice (LSI Quadrant III): Following the presentation, students should complete the two hands-on lab exercises on their own. MI Summary Review (LSI Quadrants I and IV): Review the various types of form fields. Verbally quiz students as to which would be the most appropriate form field by stating a type of information to be collected, such as a phone number. Students should respond with a text field. Quiz them on a variety of information so that each form field is covered. MI Evaluation Informal Assessment (LSI Quadrant III): As students are completing the lab exercises look carefully at the code they are writing. Make sure that the form fields are being named appropriately and the form tag is written correctly. MI MI Formal Assessment (LSI Quadrant III, IV): Following the lesson students should complete the quiz over the concepts presented in the lesson. Extension Extension/Enrichment (LSI Quadrant IV): Consider having students explore various form processing services and have students create forms with live processing.

4 Icon MI Teaching Strategies Verbal/ Linguistic Logical/ Mathematical Visual/Spatial Musical/ Rhythmic Bodily/ Kinesthetic Intrapersonal Interpersonal Naturalist Existentialist Lecture, discussion, journal writing, cooperative learning, word origins Problem solving, number games, critical thinking, classifying and organizing, Socratic questioning Mind-mapping, reflective time, graphic organizers, color-coding systems, drawings, designs, video, DVD, charts, maps Use music, compose songs or raps, use musical language or metaphors Use manipulatives, hand signals, pantomime, real life situations, puzzles and board games, activities, roleplaying, action problems Reflective teaching, interviews, reflective listening, KWL charts Cooperative learning, roleplaying, group brainstorming, cross-cultural interactions Natural objects as manipulatives and as background for learning Socratic questions, real life situations, global problems/questions Personal Development Strategies Reading, highlighting, outlining, teaching others, reciting information Organizing material logically, explaining things sequentially, finding patterns, developing systems, outlining, charting, graphing, analyzing information Developing graphic organizers, mindmapping, charting, graphing, organizing with color, mental imagery (drawing in the mind s eye) Creating rhythms out of words, creating rhythms with instruments, playing an instrument, putting words to existing songs Moving while learning, pacing while reciting, acting out scripts of material, designing games, moving fingers under words while reading Reflecting on personal meaning of information, studying in quiet settings, imagining experiments, visualizing information, journaling Studying in a group, discussing information, using flash cards with other, teaching others Connecting with nature, forming study groups with like minded people Considering personal relationship to larger context

5 Name: Date: Period: Forms & Data Acquisition Lab Exercise 1 For this lab you will create the form shown below. The form will be submitted to a processing script to verify the proper transmission of information. Open your text editor and setup the basic HTML tags. Below the opening body tag, open a form tag. Below the opening form tag, add a hidden field. The name should be labcode and the value should be The request for a Username should be a text field named user. The request for a Password should be a password field named pass. Below the request for a username and password, add a horizontal rule <hr /> The remaining fields, with the exception of the button, should all be text fields. Assign each field the following names and sizes: Form Field Size Field Name First Name 30 fname Last Name 30 lname Address 50 address City 20 city State 2 state Zip 5 zip Be sure you layout the form fields as shown with all fields on a separate line, except for the City, State, and Zip which should all be on the same line. The button should be a submit button with a value of Register. Make sure you have included the closing form tag below the submit button. Resave the document and preview it in your browser. Enter data into the browser and submit it. The processing script should display each of your field names with the data entered into the field

6 Name: Date: Period: Forms & Data Acquisition Lab Exercise 2 For this lab you will create the form shown below. The form will be submitted to a processing script to verify the proper transmission of information. Open your text editor and setup the basic HTML tags. Below the body tag, add the text Tour Package Registration as a centered level 1 heading. Below the opening body tag, open a form tag. The method should be post. Below the opening form tag, add a hidden field. The name should be labcode and the value should be The name for the first name field should be named first and the name for the last name field should be last. Both the fields should be on the same line as shown in the example. After the last name field add two line breaks. The Number of People in party should be entered with a select field. The visitor should have the option to select from 1 to 4 people in their party. The value and label for each option should be 1, 2, 3, and 4 consecutively. The Select Tour Package should give the visitor the options to select from New York, Hollywood, Orlando, and Nashville. The options and values should both be the city names. Add two line breaks after the Tour Package select menu.

7 The visitor should select whether to include air travel with a radio button. The radio button group should be called airline. The value for Yes field should be yes and the value for the No field should be no. After the radio buttons set add two line breaks. The checkboxes should give the visitor the option to add Meals, Evening Wine, or Car Rental. The name of each field should be meals, wine, and car consecutively. After the checkboxes add two line breaks. Add a submit button with a value of Process Request. Make sure you have a closing form tag after the submit button. Resave the document and preview it in your browser. Enter data into the browser and submit it. The processing script should display each of your field names with the data entered into the field.

8 Name: Date: Period: Forms & Data Acquisition Quiz Which form attribute specifies how the data in the forms should be sent? method post action name What does the action attribute do? Specifies how the data should be sent to the processing script. Specifies the URL of the processing script. Contains data to be sent to the processing script. Specifies what the form does. Which form element is used to enter a single line of information? Which form element would be used to select a single item in a list? Which form element will send all the data entered into the form to the processing script? Which form element would you use to allow the visitor to enter multiple lines of text into a form field? input element

9 If you were to ask the visitor to select a single item in a list, and only display the selected item, which form element would you use? hidden field If you were to allow the visitor to select multiple items in a list, which form element would you use? Which form element will allow you to send information to the server that the visitor does not enter, and does not show up on the form? hidden field Which input element will clear out all the data entered into a form? rest button

10 Forms & Data Acquisition Quiz - KEY Which form attribute specifies how the data in the forms should be sent? method post action name What does the action attribute do? Specifies how the data should be sent to the processing script. Specifies the URL of the processing script. Contains data to be sent to the processing script. Specifies what the form does. Which form element is used to enter a single line of information? Which form element would be used to select a single item in a list? Which form element will send all the data entered into the form to the processing script? Which form element would you use to allow the visitor to enter multiple lines of text into a form field? input element

11 If you were to ask the visitor to select a single item in a list, and only display the selected item, which form element would you use? hidden field If you were to allow the visitor to select multiple items in a list, which form element would you use? Which form element will allow you to send information to the server that the visitor does not enter, and does not show up on the form? hidden field Which input element will clear out all the data entered into a form? rest button

Lesson Plan. Course Title: Digital Interactive Media Session Title: Master Pages

Lesson Plan. Course Title: Digital Interactive Media Session Title: Master Pages Lesson Plan Course Title: Digital Interactive Media Session Title: Master Pages Lesson Duration: 7.5-8 hours. Lesson length is subjective and will vary from instructor to instructor. Performance Objective:

More information

Lesson Plan. Course Title: Principles of Information Technology Session Title: Intro to Databases Lesson Duration: Varies dependent upon instructor

Lesson Plan. Course Title: Principles of Information Technology Session Title: Intro to Databases Lesson Duration: Varies dependent upon instructor Lesson Plan Course Title: Principles of Information Technology Session Title: Intro to Databases Lesson Duration: Varies dependent upon instructor Performance Objective: Upon completion of this lesson,

More information

Lesson Plan. Session Title: Cutting Edge Technology

Lesson Plan. Session Title: Cutting Edge Technology Lesson Plan Course Title: Principles of Information Technology Lesson Duration: 7 hours Session Title: Cutting Edge Technology Performance Objective: Upon completion of this assignment, the student will

More information

Lesson Plan. Upon completion of this assignment, the student will be able to build a small network and identify the different types of hackers.

Lesson Plan. Upon completion of this assignment, the student will be able to build a small network and identify the different types of hackers. Lesson Plan Course Title: Principles of IT Session Title: Networks and Hackers Lesson Duration: Lesson length is subjective and will vary from instructor to instructor. Performance Objective: Upon completion

More information

Lesson Plan. Course Title: Digital and Interactive Media. Session Title: Introduction to Publishing Layouts

Lesson Plan. Course Title: Digital and Interactive Media. Session Title: Introduction to Publishing Layouts Lesson Plan Course Title: Digital and Interactive Media Lesson Duration: 24 Hours Session Title: Introduction to Publishing Layouts Performance Objective: Upon completion of this assignment, the student

More information

USING POWERPOINT IN THE CLASSROOM LESSON 1 POWERPOINT BASICS

USING POWERPOINT IN THE CLASSROOM LESSON 1 POWERPOINT BASICS USING POWERPOINT IN THE CLASSROOM LESSON 1 POWERPOINT BASICS Objectives Start PowerPoint. Open an existing presentation. Save a presentation. Navigate through a presentation, and use the menus and toolbars.

More information

Texas Gateway CMDS: Content Editor Guide

Texas Gateway CMDS: Content Editor Guide Texas Gateway CMDS: Content Editor Guide Introduction Content providers within the Texas Gateway CMDS have access to the Content Editor, which is the interface they use to create, edit, and manage their

More information

Web Design Course Syllabus and Course Outline

Web Design Course Syllabus and Course Outline Web Design Course Syllabus and Course Outline COURSE OVERVIEW AND GOALS In today's world, web pages are the most common medium for sharing ideas and information. Learning to design websites is an incredibly

More information

Lesson Plan. Preparation

Lesson Plan. Preparation Math Practicum in Information Technology Lesson Plan Performance Objective Upon completion of this lesson, each student will be able to convert between different numbering systems and correctly write mathematical

More information

Introduction Add Item Add Folder Add External Link Add Course Link Add Test Add Selection Text Editing...

Introduction Add Item Add Folder Add External Link Add Course Link Add Test Add Selection Text Editing... Table of Contents Introduction... 2 Add Item... 3 Add Folder... 3 Add External Link... 4 Add Course Link... 4 Add Test... 4 Add Selection... 5 Text Editing... 8 Manage... 9 Instructional Media and Design

More information

CompClass Solo User Guide for Instructors

CompClass Solo User Guide for Instructors CompClass Solo User Guide for Instructors CompClass Solo User Guide for Instructors Table of Contents Overview... 1 Online Help... 1 System Requirements... 2 Adopting CompClass... 2 Student Access to CompClass...

More information

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel.

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel. Adobe Dreamweaver CS6 Project 3 guide How to create forms You can use forms to interact with or gather information from site visitors. With forms, visitors can provide feedback, sign a guest book, take

More information

Department of Organizational Performance and Workplace Learning, Boise State University Basic Use of Qualtrics Instructional Materials for OPWL 530

Department of Organizational Performance and Workplace Learning, Boise State University Basic Use of Qualtrics Instructional Materials for OPWL 530 Department of Organizational Performance and Workplace Learning, Boise State University Basic Use of Qualtrics Instructional Materials for OPWL 530 OPWL 530 Evaluation Basic Use of Qualtrics Instructional

More information

GRAPHIC WEB DESIGNER PROGRAM

GRAPHIC WEB DESIGNER PROGRAM NH128 HTML Level 1 24 Total Hours COURSE TITLE: HTML Level 1 COURSE OVERVIEW: This course introduces web designers to the nuts and bolts of HTML (HyperText Markup Language), the programming language used

More information

GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher

GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher GeographyPortal Instructor Quick Start World Regional Geography Without Subregions, Fifth Edition Pulsipher For technical support call 1-800-936-6899 GeographyPortal Quick Start for Pulsipher, World Regional

More information

PsychPortal Instructor Quick Start for Myers, Psychology 10e In Modules

PsychPortal Instructor Quick Start for Myers, Psychology 10e In Modules PsychPortal Instructor Quick Start for Myers, Psychology 10e In Modules For technical support call 1-800-936-6899 PsychPortal Quick Start for Myers Psychology 10e In Modules Table of Contents Overview...

More information

EnviroPortal Instructor Quick Start for Friedland, Relyea, & Courard-Hauri Environmental Science: Foundations and Applications

EnviroPortal Instructor Quick Start for Friedland, Relyea, & Courard-Hauri Environmental Science: Foundations and Applications EnviroPortal Instructor Quick Start for Friedland, Relyea, & Courard-Hauri Environmental Science: Foundations and Applications For technical support call 1-800-936-6899 EnviroPortal Quick Start for Friedland,

More information

Tutor Handbook for WebCT

Tutor Handbook for WebCT Tutor Handbook for WebCT Contents Introduction...4 Getting started...5 Getting a course set up...5 Logging onto WebCT...5 The Homepage...6 Formatting and designing the Homepage...8 Changing text on the

More information

CONTENTS. What is Moodle? Logging in to Moodle Introducing the Workspace Customising the Workspace... 8

CONTENTS. What is Moodle? Logging in to Moodle Introducing the Workspace Customising the Workspace... 8 Moodle Training March 2012 Material produced by the VLE Group (Monash University) and elearning Services (Faculty of Medicine, Nursing and Health Sciences, Monash University) vle.monash.edu/supporttraining/learnbytech/moodle/

More information

Using this tutorial, you will create a Web page for a fictional foundation. The tutorial is divided into the following parts:

Using this tutorial, you will create a Web page for a fictional foundation. The tutorial is divided into the following parts: Extend Tutorial Copyright Copyright 2005 ACS Technologies Group, Inc. All rights reserved. Reproduction of any part of this publication by mechanical or electronic means, including facsimile transmission

More information

Getting Started in Your Blackboard 5 Course

Getting Started in Your Blackboard 5 Course Getting Started in Your Blackboard 5 Course Course Name: Course ID: Instructor: URL: http://hofstra.blackboard.com Username: Password: This course will be using Web-based software, which integrates course

More information

Unitis 4.3. Administrator Manual

Unitis 4.3. Administrator Manual Unitis 4.3 Administrator Manual Unitis 4.3 Modified by: Caroline Watson March 14, 2011 Version 1 Table of Content Unitis 4.3: An Introduction... 1 What s in this Manual?...1 Section 1: Logging in... 2

More information

Respondus LockDown Browser Guide

Respondus LockDown Browser Guide Respondus LockDown Browser Guide This guide provides instructions on using Respondus LockDown Browser with a quiz on canvas. When a student uses this Browser, they are unable to print, copy, go to another

More information

EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e

EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e EconPortal Instructor Quick Start for Krugman/Wells Macroeconomics, 3e For technical support call 1-800-936-6899 EconPortal Quick Start for Krugman/Wells Macroeconomics, 3e Table of Contents Overview...

More information

Ministry of Higher Education and Scientific Research

Ministry of Higher Education and Scientific Research Morning Study Department of information technology Institute of Technical - Duhok. University of Polytechnic Duhok. Subject: Web Technology Course book for 2nd year. Lecturer s name: MSc. Ayman Nashwan

More information

Instructor User Guide for PsychPortal Psychology, Eighth Edition in Modules

Instructor User Guide for PsychPortal Psychology, Eighth Edition in Modules Instructor User Guide for PsychPortal Psychology, Eighth Edition in Modules Myers Getting Started with PsychPortal for Myers, Psychology, Eighth Edition in Modules Table of Contents Overview... 1 Online

More information

National Training and Education Resource. Authoring Course. Participant Guide

National Training and Education Resource. Authoring Course. Participant Guide National Training and Education Resource Authoring Course Participant Guide Table of Contents: OBJECTIVES... 4 OVERVIEW OF NTER... 5 System Requirements... 5 NTER Capabilities... 6 What is the SCORM PlayerWhat

More information

UPLOADING A RECORDING TO I-TUNES (updated 9/2/09)

UPLOADING A RECORDING TO I-TUNES (updated 9/2/09) UPLOADING A RECORDING TO I-TUNES (updated 9/2/09) Before you begin, install the following FREE software: I-Tunes Java Mozilla Firefox Internet Browser http://www.apple.com/itunes/overview/ http://www.java.com/en/

More information

13: MOODLE WIKIS. Oklahoma Department of CareerTech WELCOME TO THE MOODLE WIKIS TUTORIAL! In this tutorial, you will learn:

13: MOODLE WIKIS. Oklahoma Department of CareerTech  WELCOME TO THE MOODLE WIKIS TUTORIAL! In this tutorial, you will learn: Oklahoma Department of CareerTech www.okcareertech.org 13: MOODLE WIKIS WELCOME TO THE MOODLE WIKIS TUTORIAL! In this tutorial, you will learn: What a wiki is Some ways to use a wiki with students How

More information

Blackboard 5 Level One Student Manual

Blackboard 5 Level One Student Manual Blackboard 5 Level One Student Manual Blackboard, Inc. 1899 L Street NW 5 th Floor Washington DC 20036 Copyright 2000 by Blackboard Inc. All rights reserved. No part of the contents of this manual may

More information

Instructor User Guide for EnviroPortal Environmental Science: Foundations and Applications Friedland, Relyea, & Courard-Hauri

Instructor User Guide for EnviroPortal Environmental Science: Foundations and Applications Friedland, Relyea, & Courard-Hauri Instructor User Guide for EnviroPortal Environmental Science: Foundations and Applications Friedland, Relyea, & Courard-Hauri Getting Started with EnviroPortal for Friedland, Relyea, & Courard-Hauri Environmental

More information

IDX Quick Start Guide. A Guide for New Clients

IDX Quick Start Guide. A Guide for New Clients IDX Quick Start Guide A Guide for New Clients Introduction Congratulations on your decision to integrate IDX property search and lead capture tools into your website! With these IDX tools, your website

More information

CANDIDATES GUIDE TO USING TASKSTREAM

CANDIDATES GUIDE TO USING TASKSTREAM CANDIDATES GUIDE TO USING TASKSTREAM Contents: A. How to set up a Taskstream Account B. How to self enroll into a course C. How to add work to your DRF D. How to submit work for review E. How to submit

More information

An Introduction to Coursebuilder Using Dreamweaver to Create E-Learning Jennifer Handley:

An Introduction to Coursebuilder Using Dreamweaver to Create E-Learning Jennifer Handley: An Introduction to Coursebuilder Using Dreamweaver to Create E-Learning Jennifer Handley: GatorJLH@aol.com What is Coursebuilder and what does it do? Free extension by Dreamweaver Allows you to define

More information

CompClass User Guide for Instructors A Writer s Reference, Sixth Edition

CompClass User Guide for Instructors A Writer s Reference, Sixth Edition CompClass User Guide for Instructors A Writer s Reference, Sixth Edition Hacker Getting Started with CompClass for A Writer s Reference, Sixth Edition Table of Contents Overview... 1 Online Help... 1 System

More information

Texas Gateway CMDS: Course Creation Guide

Texas Gateway CMDS: Course Creation Guide Texas Gateway CMDS: Course Creation Guide About Gateway Courses The Gateway CMDS employs a COPE (Create Once, Publish Everywhere) model in which content is created once and is distributed to and repurposed

More information

B. V. Patel Institute of Business Management, Computer & Information Technology, UTU

B. V. Patel Institute of Business Management, Computer & Information Technology, UTU B. C. A (Semester I) 030010108: Introduction to Web Design Lesson Plan Objective: To provide basic understanding of web and HTML for designing web pages in conjunction with HTML tags, text, videos and

More information

Big Ideas Math Digital Platform. Student Orientation

Big Ideas Math Digital Platform. Student Orientation Big Ideas Math Digital Platform Student Orientation Big Ideas Math Big Ideas Math is the name of the new series we are using at Edwardsville High School for the following courses: Algebra 1 Geometry Algebra

More information

myngconnect.com Teacher User Manual

myngconnect.com Teacher User Manual myngconnect.com Teacher User Manual Table of Contents Teacher & Student eeditions... 2 Resources... 6 Accessing Resources... 6 Digital Library... 6 Teacher Resource Directory... 7 Assessment Resource Directory...

More information

Instructor User Guide for BioPortal Molecular Biology

Instructor User Guide for BioPortal Molecular Biology Instructor User Guide for BioPortal Molecular Biology Cox, Doudna, and O Donnel Getting Started with BioPortal for Cox, Doudna, and O Donnel, Molecular Biology Table of Contents Overview... 1 Online Help...

More information

WebStore by Amazon: Quick Start Guide

WebStore by Amazon: Quick Start Guide WebStore by Amazon: Quick Start Guide Introduction to WebStore by Amazon WebStore by Amazon is a powerful tool that allows you to create a complete e- commerce site. The WebStore by Amazon setup wizard

More information

Partner Side SMART Guide

Partner Side SMART Guide Partner Side SMART Guide Table of Contents 1. Introduction... 3 2. Partner Registration Process... 3 3. Additional Form... 12 4. Scorecard... 13 5. View Buyer Profile... 14 Partner Side User Manual 31

More information

Getting Started in the Online Lab

Getting Started in the Online Lab Getting Started in the Online Lab Contents Installing the Online Lab Software Enrolling in the Online Lab Navigating in the Online Lab Introducing the Home Row Position Correct Keyboarding Posture Viewing

More information

BLACKBOARD CE6 Guide. Workshop Handout

BLACKBOARD CE6 Guide. Workshop Handout BLACKBOARD CE6 Guide Workshop Handout Table of Contents Why Blackboard...1 What s New in Blackboard...1 What Happened to my Course in WebCT... 2 How Do I Request a New Course Shell... 2 How Do I Log Onto

More information

,

, Weekdays:- 1½ hrs / 3 days Fastrack:- 1½hrs / Day ADMEC Multimedia Institute www.admecindia.co.in 9911782350, 9811818122 Web Master Plus Course is an 18 months advanced and industry-recognized diploma

More information

All Applications Release Bulletin January 2010

All Applications Release Bulletin January 2010 All Applications Release Bulletin January 2010 In this bulletin... Online Enrollment: HTML Forms for Contracts 2 System Administration: MBP Online User Accounts 11 About Release 91_6 This release includes

More information

Faculty Training. Blackboard I Workshop Bobbi Dubins

Faculty Training. Blackboard I Workshop Bobbi Dubins Faculty Training Blackboard I Workshop Bobbi Dubins Table of Contents Introduction... 2 blackboard.allegany.edu... 2 Overview of Features:... 2 Using Blackboard... 3 Changing Your Password... 3 How to

More information

1. Setup a root folder for the website 2. Create a wireframe 3. Add content 4. Create hyperlinks between pages and to external websites

1. Setup a root folder for the website 2. Create a wireframe 3. Add content 4. Create hyperlinks between pages and to external websites A. Pre-Production of Webpage 1. Determine the specific software needed WYSIWYG- design software that manipulates components of the web page without the user writing or editing code Uses graphical layout

More information

Poet Image Description Tool: Step-by-step Guide

Poet Image Description Tool: Step-by-step Guide Poet Image Description Tool: Step-by-step Guide Introduction This guide is designed to help you use the Poet image description tool to add image descriptions to DAISY books. The tool assumes you have access

More information

Accessing and Setting Your Blackboard Interface Preferences

Accessing and Setting Your Blackboard Interface Preferences Accessing and Setting Your Blackboard Interface Preferences Version 1.00.10132005 Francis Tuttle Technology Center elearning Department TABLE OF CONTENTS Purpose and Objectives.....................................

More information

Instructor User Guide for StatsPortal The Basic Practice of Statistics, Sixth Edition

Instructor User Guide for StatsPortal The Basic Practice of Statistics, Sixth Edition Instructor User Guide for StatsPortal The Basic Practice of Statistics, Sixth Edition Moore/Notz/Fligner Getting Started with StatsPortal for Moore, The Basic Practice of Statistics, 6e Table of Contents

More information

E-Business Systems 1 INTE2047 Lab Exercises. Lab 5 Valid HTML, Home Page & Editor Tables

E-Business Systems 1 INTE2047 Lab Exercises. Lab 5 Valid HTML, Home Page & Editor Tables Lab 5 Valid HTML, Home Page & Editor Tables Navigation Topics Covered Server Side Includes (SSI) PHP Scripts menu.php.htaccess assessment.html labtasks.html Software Used: HTML Editor Background Reading:

More information

Rhythm Rhyme Results educationalrap.com. Screenshots and Information

Rhythm Rhyme Results educationalrap.com. Screenshots and Information Screenshots and Information RRR.fm Welcome Email Once your subscription to RRR.fm has been processed you will receive this Welcome to RRR.fm email. Read the directions carefully and keep in a convenient

More information

Adding Content to Blackboard

Adding Content to Blackboard Adding Content to Blackboard Objectives... 2 Task Sheet for: Adding Content to Blackboard... 3 What is Content?...4 Presentation Type and File Formats... 5 The Syllabus Example... 6 PowerPoint Example...

More information

Advanced Training Manual: Surveys Last Updated: October 2013

Advanced Training Manual: Surveys Last Updated: October 2013 Advanced Training Manual: Surveys Last Updated: October 2013 Advanced Training Manual: Surveys Page 1 of 28 Table of Contents Introduction Training Objective Surveys Overview Survey Table Survey Options

More information

Relationships and Graphs 7.4.A. Graphing Proportional Relationships You can use a graph to explore proportional relationships.

Relationships and Graphs 7.4.A. Graphing Proportional Relationships You can use a graph to explore proportional relationships. ? LESSN.3 Proportional Relationships and Graphs ESSENTIAL QUESTIN Proportionality 7..A Represent constant rates of change in mathematical and real-world problems given pictorial, tabular, verbal, numeric,

More information

Chapter 126 TEKS for Technology Applications

Chapter 126 TEKS for Technology Applications Chapter 126 TEKS for Technology Applications What is Chapter 126? Chapter 126 outlines the skill levels that have to be achieved by all Texas students per year through the 8 th grade. Since many schools

More information

PPC S SMART PRACTICE AIDS PRODUCT SUPPORT

PPC S SMART PRACTICE AIDS PRODUCT SUPPORT PPC S SMART PRACTICE AIDS PRODUCT SUPPORT Recognizing the diverse needs of our customers, SMART Practice Aids offers a diverse set of product support offerings for help when you need it and where you need

More information

Greenwood International School Course Description

Greenwood International School Course Description Ref: GIS ICT G11 2017-2018 Greenwood International School Course Description SUBJECT : Information and Communication Technology (ICT) GRADE LEVEL : 11 DURATION : 1 Year TEACHER : Ms. Sarika GOAL: The students

More information

JOHNSON COUNTY COMMUNITY COLLEGE COURSE SYLLABUS WEB CRN Web Scripting: JavaScript I

JOHNSON COUNTY COMMUNITY COLLEGE COURSE SYLLABUS WEB CRN Web Scripting: JavaScript I JOHNSON COUNTY COMMUNITY COLLEGE COURSE SYLLABUS WEB 114-002 CRN 12234 Web Scripting: JavaScript I TERM: Spring 2017 DIVISION: Computing Sciences & Information Technology CREDITS: 2 Pre/Corequisite: WEB

More information

Introduction. Paradigm Publishing. SNAP for Microsoft Office SNAP for Our Digital World. System Requirements

Introduction. Paradigm Publishing. SNAP for Microsoft Office SNAP for Our Digital World. System Requirements Introduction Paradigm Publishing Paradigm understands the needs of today s educators and exceeds the demand by offering the latest technological advancements for coursework settings. With the success of

More information

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey:

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey: Overview of Survey Administration The first thing you see when you open up your browser to the Ultimate Survey Software is the Login Page. You will find that you see three icons at the top of the page,

More information

How to Activate Student Log in to the student Registration system (also known as My Community Education or Banner ).

How to Activate Student Log in to the student Registration system (also known as My Community Education or Banner ). How to Activate Student E-Mail 1. Log in to the student Registration system (also known as My Community Education or Banner ). 2. The new account notice shows at the top of the screen once signed in. Click

More information

Web Site Development with HTML/JavaScrip

Web Site Development with HTML/JavaScrip Hands-On Web Site Development with HTML/JavaScrip Course Description This Hands-On Web programming course provides a thorough introduction to implementing a full-featured Web site on the Internet or corporate

More information

CIW: Advanced HTML5 and CSS3 Specialist. Course Outline. CIW: Advanced HTML5 and CSS3 Specialist. ( Add-On ) 16 Sep 2018

CIW: Advanced HTML5 and CSS3 Specialist. Course Outline. CIW: Advanced HTML5 and CSS3 Specialist.   ( Add-On ) 16 Sep 2018 Course Outline CIW: Advanced HTML5 and CSS3 Specialist 16 Sep 2018 ( Add-On ) Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number of Questions 4. Expert Instructor-Led

More information

COPYRIGHTED MATERIAL. Contents. Chapter 1: Introducing Microsoft Expression Web 1. Chapter 2: Building a Web Page 21. Acknowledgments Introduction

COPYRIGHTED MATERIAL. Contents. Chapter 1: Introducing Microsoft Expression Web 1. Chapter 2: Building a Web Page 21. Acknowledgments Introduction Acknowledgments Introduction Chapter 1: Introducing Microsoft Expression Web 1 Familiarizing Yourself with the Interface 2 The Menu Bar 5 The Development Window 7 The Development Area 8 The Tabbed File

More information

CONTENT MIGRATION ANGEL TO BLACKBOARD CONTENTS

CONTENT MIGRATION ANGEL TO BLACKBOARD CONTENTS Introduction CONTENT MIGRATION ANGEL TO BLACKBOARD Content that has been migrated from ANGEL into Blackboard Learn is preserved, but there will be differences in the functionality and layout of the migrated

More information

Hands-on Activities in Sakai

Hands-on Activities in Sakai Hands-on Activities in Sakai (Adapted in part from https://owl.uwo.ca/portal/site/owldocs and http://docs.moodle.org/20/en/wimba/using_the_voice_tools) Course Site vs. Project Site Course sites in Sakai

More information

CIW: JavaScript Specialist. Course Outline. CIW: JavaScript Specialist. 30 Dec

CIW: JavaScript Specialist. Course Outline. CIW: JavaScript Specialist. 30 Dec Course Outline 30 Dec 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number of Questions 4. Expert Instructor-Led Training 5. ADA Compliant & JAWS Compatible

More information

Blackboard 1: Course Sites

Blackboard 1: Course Sites Blackboard 1: Course Sites This handout outlines the material covered in the first of four workshops on teaching with Blackboard. It will help you begin building your Blackboard course site. You will learn

More information

Microsoft PowerPoint 2010 Level 1

Microsoft PowerPoint 2010 Level 1 Microsoft PowerPoint 2010 Level 1 Length: 1 Day Technology: MS PowerPoint 2010 Delivery Method: Instructor-led (classroom) About this Course This one-day instructor-led course provides students with an

More information

Introduction to IBM Rational HATS For IBM System i (5250)

Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web application capable of transforming

More information

While editing a page, a menu bar will appear at the top with the following options:

While editing a page, a menu bar will appear at the top with the following options: Page Editor ===> Page Editor How Can I Use the Page Editor? The Page Editor will be your primary way of editing your website. Page Editor Basics While editing a page, you will see that hovering your mouse

More information

Chapter 17 Creating Online Pages and Sites

Chapter 17 Creating Online Pages and Sites Lesson Plans for Chapter 17 1 Chapter 17 Creating Online Pages and Sites Chapter Objectives Discuss the Chapter 17 objectives with students: Learn about the creation of the World Wide Web. Write HTML tags

More information

Getting Started with Moodle Virtual Learning Environment. Student User Guide

Getting Started with Moodle Virtual Learning Environment. Student User Guide Started with Moodle Virtual Learning Environment Student User Guide Belgrade, 2016 Contents 1. GENERAL INFORMATION ABOUT MOODLE... 3 2. THE FACULTY S MOODLE ACCESS AND LOGGING IN... 4 2.1. User profile

More information

TLM Enterprise Job Aids

TLM Enterprise Job Aids TLM Enterprise Job Aids Procedure Page VISUAL PROPERTIES... 2 Change Logos... 2 Change Colour Scheme... 3 NAVIGATION... 4 Optimize Navigation... 4 CURRICULUM DEVELOPMENT... 5 Create a Module... 5 Method

More information

In this tutorial, you will learn how to perform basic tasks for setting up a course site in Moodle.

In this tutorial, you will learn how to perform basic tasks for setting up a course site in Moodle. Curriculum and Instructional Materials Center 1-800-654-4502 www.okcimc.com 1: INTRO TO MOODLE WELCOME TO THE INTRO TO MOODLE TRAINING ACTIVITY! In this tutorial, you will learn how to perform basic tasks

More information

Introduction to Events

Introduction to Events Facilitation Guide Introduction to Events ( http://www.alice.org/resources/lessons/introduction-to-events/ ) Summary This guide is intended to guide the facilitator through the creation of events and using

More information

Guide to Access the Course using the ADB elearn Mobile App (Android)

Guide to Access the Course using the ADB elearn Mobile App (Android) Guide to Access the Course using the ADB elearn Mobile App (Android) This guide is intended for learners who wish to take the course in ADB elearn using the (Android) Moodle Mobile App. A. Install the

More information

Table of Contents. How do I log into Moodle?...2. How do I find my course?...2. I found my course, now what do I do?...3

Table of Contents. How do I log into Moodle?...2. How do I find my course?...2. I found my course, now what do I do?...3 Table of Contents How do I log into Moodle?...2 How do I find my course?...2 I found my course, now what do I do?...3 How do I turn in my work?...7 How do I post in a Discussion Forum?...8 How do I turn

More information

COMPUTERIZED OFFICE SUPPORT PROGRAM

COMPUTERIZED OFFICE SUPPORT PROGRAM NH108 Excel Level 1 16 Total Hours COURSE TITLE: Excel Level 1 COURSE OVERVIEW: This course provides students with the knowledge and skills to create spreadsheets and workbooks that can be used to store,

More information

Customer Care Portal User Guide

Customer Care Portal User Guide Customer Care Portal User Guide Table of Contents Logging In...3 Live Chat... 3 Viewing your Cases...4 Logging a Case for Customer Support...4 Projects...6 Knowledge Base....6 Content.....7 Forms...7 Event

More information

INTRODUCTION TO WEB DEVELOPMENT AND HTML. Lecture 13: Intro to JavaScript - Spring 2011

INTRODUCTION TO WEB DEVELOPMENT AND HTML. Lecture 13: Intro to JavaScript - Spring 2011 INTRODUCTION TO WEB DEVELOPMENT AND HTML Lecture 13: Intro to JavaScript - Spring 2011 Outline Intro to JavaScript What is JavaScript? JavaScript!= Java Intro to JavaScript JavaScript is a lightweight

More information

GRAPHIC WEB DESIGNER PROGRAM

GRAPHIC WEB DESIGNER PROGRAM NH111 Outlook Level 1 16 Total Hours COURSE TITLE: Outlook Level 1 COURSE OVERVIEW: This course provides students with the knowledge and skills to utilize Microsoft Outlook to manage all aspects of email

More information

Qwizdom Training Guide Q6 / Q7

Qwizdom Training Guide Q6 / Q7 Qwizdom Training Guide Q6 / Q7 2011 - Qwizdom Inc. Contents General Information 1 HID Host 1 Connect Overview 1 Remote Configuration 2 Installing State Standards 2 Creating Classes 3 Creating a Participant

More information

How-To Guide for the Berkeley Language Center (BLC) Library of Foreign Language Film Clips (LFLFC) 1

How-To Guide for the Berkeley Language Center (BLC) Library of Foreign Language Film Clips (LFLFC) 1 How-To Guide for the Berkeley Language Center (BLC) Library of Foreign Language Film Clips (LFLFC) 1 Contents Signing Up Logging In Home Tab o Resetting your Password Identifying Films and Clips in your

More information

Activ! Coaching User Guide

Activ! Coaching User Guide Activ! Coaching User Guide August 31, 2007 Voice Print International, Inc 160 Camino Ruiz, Camarillo, CA 93012-6700 (Voice) 800-200-5430 805-389-5200 (Fax) 805-389-5202 www.vpi-corp.com All information

More information

New York City College of Technology The City University of New York. Department of Communication Design. COMD Dynamic Web I: Web 2.

New York City College of Technology The City University of New York. Department of Communication Design. COMD Dynamic Web I: Web 2. New York City College of Technology The City University of New York Department of Communication Design COMD 3663 - Dynamic Web I: Web 2.0 Course Description Websites become alive and powerful as they incorporate

More information

Linking your Adobe Connect recording to your Canvas Course

Linking your Adobe Connect recording to your Canvas Course Linking your Adobe Connect recording to your Canvas Course Adobe Connect Beginners Finding your Adobe Connect Recording...1 Linking your Adobe Connect Recording to Canvas Course...5 Option A: Link within

More information

feel free to poke around and change things. It's hard to break anything in a Moodle course, and even if you do it's usually easy to fix it.

feel free to poke around and change things. It's hard to break anything in a Moodle course, and even if you do it's usually easy to fix it. Teacher s Manual Teacher Manual This page is a very quick guide to creating online courses with Moodle. It outlines the main functions that are available, as well as some of the main decisions you'll need

More information

INSTRUCTOR MANUAL. February 2019 / Version Instructor Manual February 2019 / V11.2

INSTRUCTOR MANUAL. February 2019 / Version Instructor Manual February 2019 / V11.2 INSTRUCTOR MANUAL February 2019 / Version 11.2 1 INSTRUCTOR MANUAL CONTENTS 1. ABOUT 2. GETTING STARTED Side Panel Where To Locate Instructor Tools How To Exit Instructor Tools Providing Students With

More information

1. To access the Course settings page, click Edit settings in the Administration block.

1. To access the Course settings page, click Edit settings in the Administration block. Course Management Managing Course Design Configuring Course Settings The course setting page contains all of the important options for your course such as making the course available to students, and enabling

More information

Linking a CMS or Videoconference to your Canvas Course

Linking a CMS or Videoconference to your Canvas Course Linking a CMS or Videoconference to your Canvas Course Intermediate Creating an Ensemble Playlist... 1 Setting up your Videoconference to be recorded... 2 Embedding a video... 3 Embedding a playlist...

More information

Installing and Configuring Respondus

Installing and Configuring Respondus Installing and Configuring Respondus Intermediate Installing Respondus... 1 Configuring Respondus... 6 Installing Respondus Note: Before installing Respondus, you will need to close any Word Processing

More information

COURSE FILES. BLACKBOARD TUTORIAL for INSTRUCTORS

COURSE FILES. BLACKBOARD TUTORIAL for INSTRUCTORS OVERVIEW: Course Files provides file storage on the Blackboard server for a single course. Course Files within each course displays content for that specific course, not for other courses you teach. You

More information

TurningPoint AnyWhere

TurningPoint AnyWhere TurningPoint AnyWhere TurningPoint Blackboard Registration Tool Making the Tool Available 1. From the Control Panel, select click Customization >>Tool Availability. 2. From the Tools list, check Registration

More information

MOODLE MANUAL TABLE OF CONTENTS

MOODLE MANUAL TABLE OF CONTENTS 1 MOODLE MANUAL TABLE OF CONTENTS Introduction to Moodle...1 Logging In... 2 Moodle Icons...6 Course Layout and Blocks...8 Changing Your Profile...10 Create new Course...12 Editing Your Course...15 Adding

More information

Contents. Announcer Pro Version 4.6 Page 2 of 35 Version V4.6

Contents. Announcer Pro Version 4.6 Page 2 of 35 Version V4.6 User Guide Contents 1. Introduction... 3 1.1. Getting Started... 3 1.2. Navigation... 4 2. Create a Newsletter... 6 2.1. Confirm Company Details... 6 2.2. Choose Template... 8 2.3. Edit Newsletter... 8

More information

Organizing Your Network with Netvibes 2009

Organizing Your Network with Netvibes 2009 Creating a Netvibes Account 1. If you closed your Internet browser from the last exercise, open it and navigate to: htt://www.netvibes.com. 2. Click Sign In in the upper right corner of the screen. 3.

More information

Maharashtra State Board of Technical Education (MSBTE) 'I' Scheme VI Semester Course Curriculum

Maharashtra State Board of Technical Education (MSBTE) 'I' Scheme VI Semester Course Curriculum Maharashtra State Board of Technical Education (MSBTE) 'I' Scheme VI Semester Course Curriculum Course Title: Web Based Application development with PHP (IF, CO) (Course Code:...) Diploma programme in

More information