GLEN RIDGE PUBLIC SCHOOLS MATHEMATICS MISSION STATEMENT AND GOALS

Size: px
Start display at page:

Download "GLEN RIDGE PUBLIC SCHOOLS MATHEMATICS MISSION STATEMENT AND GOALS"

Transcription

1 Course Title: Advanced Web Design Subject: Mathematics / Computer Science Grade Level: 9-12 Duration: 0.5 year Number of Credits: 2.5 Prerequisite: Grade of A or higher in Web Design Elective or Required: Elective Course Description: This course will build upon the topics learned in Web Design and delve into more advanced concepts. Topics covered include: Web Servers and FTP (and getting a web site online), advanced web scripting languages, server-side scripting versus client-side scripting, Adobe Flash animation, and, time permitting, data manipulation using Extensible Markup Language (XML). GLEN RIDGE PUBLIC SCHOOLS MATHEMATICS MISSION STATEMENT AND GOALS Mathematics and Computer Science are an integral part of our lives. Students must be actively involved in their mathematics education with problem solving being an essential part of the curriculum. The mathematics and computer science curricula should emphasize thinking skills through a balance of computation, intuition, common sense, logic, analysis and technology. Students will be engaged and challenged in a student-centered learning environment that is developmentally appropriate. Students will communicate mathematical ideas effectively by applying hands-on manipulatives, basic computational skills, mathematical models, and technology in order to solve practical problems. Author: Kevin George Date Submitted: Summer 2011

2 New Jersey Core Curriculum Standards The units that comprise this curriculum meet the following NJ state core curriculum content standards: Technology Literacy Standards: 8.1 Educational Technology. All students will use digital tools to access, manage, evaluate, and synthesize information in order to solve problems individually and collaboratively and to create and communicate knowledge. 8.2 Technology Education, Engineering, and Design. All students will develop an understanding of the nature and impact of technology, engineering, technological design, and the designed world, as they relate to the individual, global society, and the environment. 21st-Century Life and Careers: st-Century Life & Career Skills. All students will demonstrate the creative, critical thinking, collaboration, and problem-solving skills needed to function successfully as both global citizens and workers in diverse ethnic and organizational cultures. 9.3 Career Awareness, Exploration, and Preparation. All students will apply knowledge about and engage in the process of career awareness, exploration, and preparation in order to navigate the globally competitive work environment of the information age. 9.4 Career and Technical Education (C. Arts, A/V Technology, & Communications Career Cluster; K. Information Technology Career Cluster). All students who complete a career and technical education program will acquire academic and technical skills for careers in emerging and established professions that lead to technical skill proficiency, credentials, certificates, licenses, and/or degrees. Math Standards: 4.5 Mathematical Processes. All students will use mathematical processes of problem solving, communication, connections, reasoning, representations, and technology to solve problems and communicate mathematical ideas.

3 Section 0: Introduction to Advanced Web Design Unit 0.1: Servers and FTP Approximate Duration: 2 days 1. What is a web server? 2. What is the difference between various web servers? 3. How do I put files on a web server? 1. Understand and explain the definition and functionality of a web server. 2. Explain the capabilities of various web servers (i.e., Windows vs. UNIX; does it support various server-side scripting languages?; etc). 3. Explain and use FTP (File Transfer Protocol) to get pages onto a web site. Students will use FTP to upload files to a web server Software: FTP Software

4 Approximate Duration: 3 days Section I: JavaScript Unit 1.1: Introduction to JavaScript 1. What is JavaScript? 2. How can I use JavaScript to enhance my web pages? 3. How do I write basic JavaScript? 4. How do I integrate JavaScript into my web pages? 1. Understand and explain the basic history of the development of JavaScript. 2. Explain the difference between Java and JavaScript. 3. Explain the difference between Interpretive Languages and Compiled Languages. 4. Write a very basic JavaScript, including printing to the screen. 5. Include JavaScript in an HTML file. 6. Explain the concept of reserved words and basic syntax in JavaScript. 7. Explain the concept of functions. Students will complete basic JavaScript applications, along the lines of a Hello World application Mozilla Developer Site: Ajaxian Developer Site: W3Schools Javascript Tutorial:

5 Unit 1.2: Data Types, Variables, and Arithmetic Operations Approximate Duration: 3 days 1. What are data types? 2. What are variables? 3. How do I save information for later use? 4. How do I perform mathematical operations? 1. Explain and use the different data types in JavaScript. 2. Explain and use variables in JavaScript. 3. Explain and use mathematical operators. 4. Explain and use arrays. 5. Time Permitting: Perform type conversions on variables in JavaScript. Students will complete various JavaScript applications, some examples include: Adder, Temperature Converter, Area of a Circle, Test Averages, Piggy Bank Mozilla Developer Site: Ajaxian Developer Site: W3Schools Javascript Tutorial:

6 Unit 1.3: Functions Approximate Duration: 1 week 1. How do I write reusable code? 2. How do I write code that will utilize information passed to it (parameters or arguments)? 1. Explain and use JavaScript built-in methods. 2. Explain and use functions. 3. Explain and use parameters. Students will complete various JavaScript applications, some examples include: Reworking previous assignments to use functions; Set Picture; SetTimeout; Clock. Mozilla Developer Site: Ajaxian Developer Site: W3Schools Javascript Tutorial:

7 Unit 1.4: Flow of Control and Form-Handling Approximate Duration: 2 weeks 1. How do I conditionally control the flow of an application? 2. How do I repeat a section of code a number of times, without having to retype the code repeatedly? 1. Create forms in HTML. 2. Explain and determine the flow of control in an application. 3. Explain and use Boolean expressions. 4. Explain and use relational and logical operators. 5. Explain and use if and if-else statements. 6. Validate forms using conditionals. 7. Time Permitting: Explain and use while loop statements. 8. Time Permitting: Use counters to control loops. 9. Time Permitting: Use increment and decrement operators. Students will complete various JavaScript applications, some examples include: o If Statements: Guessing Game; Grade Converter; Even-Odd; Weather; Survey; Slideshow o Loops: Counter; Repeater; Unique Numbers Cumulative Test Mozilla Developer Site: Ajaxian Developer Site: W3Schools Javascript Tutorial:

8 Unit 1.5: Event Handling Approximate Duration: 1 week 1. How do I have JavaScript code execute in response to an event (i.e., click, mouseover, etc)? 1. Explain and use the onclick event procedure. 2. Explain and use the onmouseover event procedure. 3. Explain and use the onmouseout event procedure. Students will complete various JavaScript applications, some examples include: Reworking previous assignments to use Events; MouseOver Effects; Move Picture; Swap Divs; Photo Gallery. Cumulative Test Mozilla Developer Site: Ajaxian Developer Site: W3Schools Javascript Tutorial:

9 Section II: Server-Side Scripting PHP (Hypertext Preprocessor) Unit 2.1: Introduction to Server-Side Scripting Approximate Duration: 3 days 1. What is the difference between Server-Side Scripting (PHP, ASP, etc) and Client-Side Scripting (JavaScript, etc)? 2. When would I use Server-Side Scripting? 3. What is the difference between PHP and ASP (Active Server Pages)? 4. How do I integrate PHP into my web pages? 1. Understand and explain the differences between Server-Side Scripting and Client-Side Scripting. 2. Understand and explain the differences between PHP and ASP. 3. Write very a basic PHP script, including how to print to the screen. 4. Include PHP in an HTML file. Students will complete basic PHP applications, along the lines of a Hello World application Yahoo! Developer Network (PHP): Zend PHP 101: WebMonkey PHP Tutorial for Beginners:

10 Unit 2.2: Data Types, Variables, Arithmetic Operations, and Flow of Control Approximate Duration: 2 weeks 1. How do I use data types, variables, and mathematical operations in PHP? 2. How do I use decision statements and loops in PHP? 3. How do I pass variables? 4. How do I display different content based on browser? 1. Explain and use data types, variables, and mathematical operators in PHP. 2. Explain and use if and if-else statements in PHP. 3. Explain and use while loops in PHP. 4. Pass variables from one page to another. 5. Display dynamic content based on browser. Students will complete various PHP applications, some examples include: Many of the same assignments from JavaScript, reworked for PHP; Passing Variables; Browser Detect Yahoo! Developer Network (PHP): Zend PHP 101: WebMonkey PHP Tutorial for Beginners:

11 Unit 2.3: Sending Approximate Duration: 1 week 1. How do I send from a web page using ? 2. How do I send form data over ? 1. Explain and use the SMTP server and related PHP commands. 2. Create a simple feedback form, to be sent over Give error messages if a form does not send successfully. Students will complete various PHP applications, some examples include: Survey; Contact Us. Cumulative Test / Project Yahoo! Developer Network (PHP): Zend PHP 101: WebMonkey PHP Tutorial for Beginners:

12 Time Permitting: Unit 2.4: Uploading Files through a Form Approximate Duration: 1 week 1. How do I create a page through which people may upload files? 1. Create an Upload Files form. 2. Collect and save files uploaded, using PHP. Students will complete various PHP applications, some examples include: Survey; Contact Us. Yahoo! Developer Network (PHP): Zend PHP 101: WebMonkey PHP Tutorial for Beginners:

13 Section III: Adobe Flash Unit 3.1: Introduction to Adobe Flash Approximate Duration: 2 weeks 1. What is Adobe Flash? 2. What types of things can I do with Flash? 3. How do I create and publish a basic Flash movie? 4. How do I integrate Flash into my web pages? 1. Understand and explain the basic features and limitations of Flash. 2. Explain and use the Adobe Flash interface/workspace, including: Library Panel, Timeline, Properties Inspector, Tools Panel. 3. Create, publish, and save a basic Flash movie. Students will a complete basic Flash application, such as a Slideshow Postcard Software: Adobe Flash CS5; Notepad; Adobe Dreamweaver CS5 Adobe Flash Dev Center: FlashPerfection: Entheos Flash Resources: Google Images:

14 Unit 3.2: Working with Symbols and Graphics Approximate Duration: 1 week 1. How do I import and work with graphics in Flash? 1. Create a symbol. 2. Import and work with graphics, including Photoshop files. 3. Edit symbols in Flash. 4. Change the size and position of instances of symbols. 5. Work with Color Effects, Blend Effects, and Filters. Students will complete various Flash movies, some examples include: Image projects Software: Adobe Flash CS5; Notepad; Adobe Dreamweaver CS5 Adobe Flash Dev Center: FlashPerfection: Entheos Flash Resources: Google Images:

15 Unit 3.3: Animation Approximate Duration: 2 weeks 1. How do I animate objects in Flash? 1. Animate position. 2. Animate transparency. 3. Animate filters. 4. Animate transformations. 5. Preview animations. Students will complete various Flash movies, some examples include: Simple Animated Movies. Cumulative Test / Project Software: Adobe Flash CS5; Notepad; Adobe Dreamweaver CS5 Adobe Flash Dev Center: FlashPerfection: Entheos Flash Resources: Google Images:

16 Unit 3.4: Interactive Navigation Approximate Duration: 2 weeks 1. How do I create Flash Animations that may be nonlinearly navigated by the user? 1. Create and use button symbols. 2. Name button instances. 3. Explain and use basic ActionScript. 4. Write ActionScript to create nonlinear navigation. Students will complete various Flash movies, some examples include: Tour Movie; Menu Movie. Software: Adobe Flash CS5; Notepad; Adobe Dreamweaver CS5 Adobe Flash Dev Center: FlashPerfection: Entheos Flash Resources: Google Images:

17 Unit 3.5: Working with Text Approximate Duration: 1 week 1. How do I create and use text in Flash? 2. How do I use text as a hyperlink? 1. Add and edit text on the Stage. 2. Apply style and formatting options to text. 3. Add hyperlinks to text. 4. Use editable text for user input. 5. Dynamically change text content. Students will complete various Flash movies, some examples include: Newspaper Movie; Real Estate Movie. Software: Adobe Flash CS5; Notepad; Adobe Dreamweaver CS5 Adobe Flash Dev Center: FlashPerfection: Entheos Flash Resources: Google Images:

18 Unit 3.6: Publishing Flash Documents Approximate Duration: 1 week 1. How do I put my Flash movie on a web page? 1. Test a Flash document. 2. Explain and use bandwith and the Bandwith Profiler. 3. Change publishing settings for a document and add metadata. 4. Publish an SWF file and its HTML file. 5. Detect the version of Flash Player a viewer has installed. Students will publish their previous Flash movies. Cumulative Test / Project Software: Adobe Flash CS5; Notepad; Adobe Dreamweaver CS5 Adobe Flash Dev Center: FlashPerfection: Entheos Flash Resources: Google Images:

19 Time Permitting: Section IV: XML (extensible Markup Language) Unit 4.1: XML (extensible Markup Language) Approximate Duration: 1 week 1. What is XML? 2. How do I write basic XML? 1. Explain and use the rules for writing XML. 2. Create root elements and child elements. 3. Nest elements. 4. Add attributes to elements. 5. Write comments. 6. Explain and use CDATA. Students will complete various XML data files, some examples include: Seven Wonders of the World; My Favorite Sports Team. W3Schools XML Tutorial: O Reilly XML Site: W3C XML Specification:

20 Unit 4.2: XML (extensible Style Language for Transformations) Approximate Duration: 2 weeks 1. How do I format XML for viewing on the web? 1. Explain the concept of XSLT. 2. Create a basic XSLT style sheet. 3. Use XSLT to create a root template, output HTML, and output values. 4. Use XSLT to loop through nodes. 5. Use XSLT to process nodes conditionally. 6. Use XSLT to sort nodes. Students will apply XSLT to the XML files they have created for various outputting assignments. W3Schools XML Tutorial: O Reilly XML Site: W3C XML Specification:

Enduring Understandings: Web Page Design is a skill that grows and develops throughout the careful planning and study of software and design.

Enduring Understandings: Web Page Design is a skill that grows and develops throughout the careful planning and study of software and design. Curriculum Map for Web Design SEPTEMBER Targeted NJ Core Curriculum Content Standards: Design develop, test, implement, update, and evaluate web solutions Technology Use, Media Literacy, Responsible Use

More information

Adobe Dreamweaver Exam Objectives

Adobe Dreamweaver Exam Objectives Adobe Dreamweaver audience needs for a website. 1.2 Identify webpage content that is relevant to the website purpose and appropriate for the target audience. 1.3 Demonstrate knowledge of standard copyright

More information

Outline. CIW Web Design Specialist. Course Content

Outline. CIW Web Design Specialist. Course Content CIW Web Design Specialist Description The Web Design Specialist course (formerly titled Design Methodology and Technology) teaches you how to design and publish Web sites. General topics include Web Site

More information

Web Design Specialist

Web Design Specialist UKWDA Training: CIW Web Design Series Web Design Specialist Course Description CIW Web Design Specialist is for those who want to develop the skills to specialise in website design and builds upon existing

More information

San Joaquin County Office of Education Career & Technical Education Web Design ~ Course Outline CBEDS#: 4601

San Joaquin County Office of Education Career & Technical Education Web Design ~ Course Outline CBEDS#: 4601 Web Design Course Outline I II 1 Course Content 5 5 Student Evaluation Employment Opportunities 2 XHTML 10 10 Creating an HTML Document Formatting Text with HTML Adding Graphics with Multimedia Using forms

More information

WEB DESIGN COURSE CONTENT

WEB DESIGN COURSE CONTENT WEB DESIGN COURSE CONTENT INTRODUCTION OF WEB TECHNOLOGIES Careers in Web Technologies How Websites are working Domain Types and Server About Static and Dynamic Websites Web 2.0 Standards PLANNING A BASIC

More information

INFORMATION TECHNOLOGY: OFFICE AND WORKPLACE

INFORMATION TECHNOLOGY: OFFICE AND WORKPLACE INFORMATION TECHNOLOGY: OFFICE AND WORKPLACE Earn a Continuing Education Certificate Business Technology Computer Graphics Computer Support Specialist Website Design X This symbol indicates that a course

More information

IE Class Web Design Curriculum

IE Class Web Design Curriculum Course Outline Web Technologies 130.279 IE Class Web Design Curriculum Unit 1: Foundations s The Foundation lessons will provide students with a general understanding of computers, how the internet works,

More information

WEB PAGE DESIGN AND DEVELOPMENT 2 COURSE CODE: 5033 (COURSE NAME CHANGES TO ADVANCED WEB DESIGN AND DEVELOPMENT IN 2016-17)

WEB PAGE DESIGN AND DEVELOPMENT 2 COURSE CODE: 5033 (COURSE NAME CHANGES TO ADVANCED WEB DESIGN AND DEVELOPMENT IN 2016-17) WEB PAGE DESIGN AND DEVELOPMENT 2 COURSE CODE: 5033 (COURSE NAME CHANGES TO ADVANCED WEB DESIGN AND DEVELOPMENT IN 2016-17) COURSE DESCRIPTION: This advanced course is designed to provide students with

More information

Macromedia Dreamweaver 8 Developer Certification Examination Specification

Macromedia Dreamweaver 8 Developer Certification Examination Specification Macromedia Dreamweaver 8 Developer Certification Examination Specification Introduction This is an exam specification for Macromedia Dreamweaver 8 Developer. The skills and knowledge certified by this

More information

STATEMENT OF PURPOSE

STATEMENT OF PURPOSE WEB DESIGN STATEMENT OF PURPOSE This course is intended for the student interested in learning how to create web pages for the World Wide Web. Instruction on how to program using the HTML language is provided.

More information

CLASSROOM WEB DESIGNING COURSE

CLASSROOM WEB DESIGNING COURSE About Web Trainings Academy CLASSROOM WEB DESIGNING COURSE Web Trainings Academy is the Top institutes in Hyderabad for Web Technologies established in 2007 and managed by ITinfo Group (Our Registered

More information

COURSE OUTLINE FACULTY OF INFORMATION AND COMMUNICATION TECHNOLOGY UNIVERSITI TEKNIKAL MALAYSIA MELAKA

COURSE OUTLINE FACULTY OF INFORMATION AND COMMUNICATION TECHNOLOGY UNIVERSITI TEKNIKAL MALAYSIA MELAKA COURSE OUTLINE FACULTY OF INFORMATION AND COMMUNICATION TECHNOLOGY UNIVERSITI TEKNIKAL MALAYSIA MELAKA ADOBE DREAMWEAVER AUTHORING TOOL DTM 3612 SEMESTER 1 SESI 2010/2011 DTM 3612 ADOBE DREAMWEAVER AUTHORING

More information

IAS Web Development using Dreamweaver CS4

IAS Web Development using Dreamweaver CS4 IAS Web Development using Dreamweaver CS4 Information Technology Group Institute for Advanced Study Einstein Drive Princeton, NJ 08540 609 734 8044 * helpdesk@ias.edu Information Technology Group [2] Institute

More information

Dreamweaver CS3 THE MISSING MANUAL. David Sawyer McFarland. POGUE PRESS" O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo

Dreamweaver CS3 THE MISSING MANUAL. David Sawyer McFarland. POGUE PRESS O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Dreamweaver CS3 THE MISSING MANUAL David Sawyer McFarland POGUE PRESS" O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Table of Contents The Missing Credits Introduction 1 Part

More information

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY Advanced Web Development Duration: 6 Months SCOPE OF WEB DEVELOPMENT INDUSTRY Web development jobs have taken thе hot seat when it comes to career opportunities and positions as a Web developer, as every

More information

Introduction to Dreamweaver

Introduction to Dreamweaver Introduction to Dreamweaver ASSIGNMENT After reading the following introduction, read pages DW1 DW24 in your textbook Adobe Dreamweaver CS6. Be sure to read through the objectives at the beginning of Web

More information

Creative Cloud for Web Design

Creative Cloud for Web Design Creative Cloud for Web Design Level: Duration: Time: Cost: Fast Track - Introduction 5 Days 9:30 AM - 4:30 PM 997 Overview Like the Dreamweaver Jumpstart course, the Creative Suite for Web Design course

More information

Web Specialist INDIVIDUAL PROGRAM INFORMATION 2014 2015. 866.Macomb1 (866.622.6621) www.macomb.edu

Web Specialist INDIVIDUAL PROGRAM INFORMATION 2014 2015. 866.Macomb1 (866.622.6621) www.macomb.edu Web Specialist INDIVIDUAL PROGRAM INFORMATION 2014 2015 866.Macomb1 (866.622.6621) www.macomb.edu Web Specialist PROGRAM OPTIONS CREDENTIAL TITLE REQUIRED NOTES Associate of Applied Science Web Specialist

More information

Contents. Introduction... 2. Downloading the Data Files... 2

Contents. Introduction... 2. Downloading the Data Files... 2 Creating a Web Page Using HTML Part 3: Multi-page Management and Uploading INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.1 Summer 2009 Contents Introduction... 2 Downloading

More information

Business & Computing Examinations (BCE) LONDON (UK)

Business & Computing Examinations (BCE) LONDON (UK) Business & Computing Examinations (BCE) LONDON (UK) Web Design Qualification Analysis & Occupational Outlook The development of BCE qualifications include extensive market research from the following sources:

More information

Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation

Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation Credit-By-Assessment (CBA) Competency List Written Assessment Competency List Introduction to the Internet

More information

Everett Public Schools Framework: Web Design

Everett Public Schools Framework: Web Design Course: CIP Code: 110801 Career Cluster: Webpage/Digital/Multimedia and Information Design Information Technology Everett Public Schools Framework: Web Design Total Framework Hours: 90 Hours Preparatory

More information

Adobe Creative Suite: Introduction for Web Design

Adobe Creative Suite: Introduction for Web Design coursemonster.com/uk Adobe Creative Suite: Introduction for Web Design View training dates» Overview Website design can be confusing to get started with. But with our Adobe Certified Instructor led class

More information

ISI ACADEMY Web applications Programming Diploma using PHP& MySQL

ISI ACADEMY Web applications Programming Diploma using PHP& MySQL ISI ACADEMY for PHP& MySQL web applications Programming ISI ACADEMY Web applications Programming Diploma using PHP& MySQL HTML - CSS - JavaScript PHP - MYSQL What You'll Learn Be able to write, deploy,

More information

LAMBDA CONSULTING GROUP Legendary Academy of Management & Business Development Advisories

LAMBDA CONSULTING GROUP Legendary Academy of Management & Business Development Advisories Curriculum # 05 Four Months Certification Program WEB DESIGNING & DEVELOPMENT LAMBDA CONSULTING GROUP Legendary Academy of Management & Business Development Advisories The duration of The Course is Four

More information

Internet Technologies_1. Doc. Ing. František Huňka, CSc.

Internet Technologies_1. Doc. Ing. František Huňka, CSc. 1 Internet Technologies_1 Doc. Ing. František Huňka, CSc. Outline of the Course 2 Internet and www history. Markup languages. Software tools. HTTP protocol. Basic architecture of the web systems. XHTML

More information

Web Page Design (Master)

Web Page Design (Master) St. Michael-Albertville High School Teacher: Ben Rusin Web Page Design (Master) September 2014 CEQ: WHAT IS HTML CODING AND HOW IS IT USED TO CREATE WEB SITES? AND HOW CAN IT BE USED TO CREATE WEB SITES?

More information

COURSE SYLLABUS EDG 6931: Designing Integrated Media Environments 2 Educational Technology Program University of Florida

COURSE SYLLABUS EDG 6931: Designing Integrated Media Environments 2 Educational Technology Program University of Florida COURSE SYLLABUS EDG 6931: Designing Integrated Media Environments 2 Educational Technology Program University of Florida CREDIT HOURS 3 credits hours PREREQUISITE Completion of EME 6208 with a passing

More information

Fireworks 3 Animation and Rollovers

Fireworks 3 Animation and Rollovers Fireworks 3 Animation and Rollovers What is Fireworks Fireworks is Web graphics program designed by Macromedia. It enables users to create any sort of graphics as well as to import GIF, JPEG, PNG photos

More information

Software Requirements Specification For Real Estate Web Site

Software Requirements Specification For Real Estate Web Site Software Requirements Specification For Real Estate Web Site Brent Cross 7 February 2011 Page 1 Table of Contents 1. Introduction...3 1.1. Purpose...3 1.2. Scope...3 1.3. Definitions, Acronyms, and Abbreviations...3

More information

Dreamweaver Tutorial - Dreamweaver Interface

Dreamweaver Tutorial - Dreamweaver Interface Expertrating - Dreamweaver Interface 1 of 5 6/14/2012 9:21 PM ExpertRating Home ExpertRating Benefits Recommend ExpertRating Suggest More Tests Privacy Policy FAQ Login Home > Courses, Tutorials & ebooks

More information

Web Application diploma using.net Technology

Web Application diploma using.net Technology Web Application diploma using.net Technology ISI ACADEMY Web Application diploma using.net Technology HTML - CSS - JavaScript - C#.Net - ASP.Net - ADO.Net using C# What You'll Learn understand all the

More information

ERIE COMMUNITY COLLEGE COURSE OUTLINE A. COURSE TITLE: CS 103 - WEB DEVELOPMENT AND PROGRAMMING FUNDAMENTALS

ERIE COMMUNITY COLLEGE COURSE OUTLINE A. COURSE TITLE: CS 103 - WEB DEVELOPMENT AND PROGRAMMING FUNDAMENTALS ERIE COMMUNITY COLLEGE COURSE OUTLINE A. COURSE TITLE: CS 103 - WEB DEVELOPMENT AND PROGRAMMING FUNDAMENTALS B. CURRICULUM: Mathematics / Computer Science Unit Offering C. CATALOG DESCRIPTION: (N,C,S)

More information

HTML5. Turn this page to see Quick Guide of CTTC

HTML5. Turn this page to see Quick Guide of CTTC Programming SharePoint 2013 Development Courses ASP.NET SQL TECHNOLGY TRAINING GUIDE Visual Studio PHP Programming Android App Programming HTML5 Jquery Your Training Partner in Cutting Edge Technologies

More information

ACE: Dreamweaver CC Exam Guide

ACE: Dreamweaver CC Exam Guide Adobe Training Services Exam Guide ACE: Dreamweaver CC Exam Guide Adobe Training Services provides this exam guide to help prepare partners, customers, and consultants who are actively seeking accreditation

More information

Title: Front-end Web Design, Back-end Development, & Graphic Design Levi Gable Web Design Seattle WA

Title: Front-end Web Design, Back-end Development, & Graphic Design Levi Gable Web Design Seattle WA Page name: Home Keywords: Web, design, development, logo, freelance, graphic design, Seattle WA, WordPress, responsive, mobile-friendly, communication, friendly, professional, frontend, back-end, PHP,

More information

CURRICULUM MAP. Web Design I Mr. Gault

CURRICULUM MAP. Web Design I Mr. Gault CURRICULUM MAP Web Design I Mr. Gault MONTH August- September ESSENTIAL QUESTIONS What is HTML and how is it used in today s web design? How is Dreamweaver used to create web pages? HTML TOPIC Dreamweaver

More information

Web Development I & II*

Web Development I & II* Web Development I & II* Career Cluster Information Technology Course Code 10161 Prerequisite(s) Computer Applications Introduction to Information Technology (recommended) Computer Information Technology

More information

WEB& WEBSITE DESIGN TRAINING

WEB& WEBSITE DESIGN TRAINING WEB& WEBSITE DESIGN TRAINING Introduction to Websites Course Content: Introduction to Web Technologies Protocols and Port Numbers Domain Names, DNS and Domaining Client and Server Software. Static, Dynamic

More information

Prerequisite: CGA 101, or written permission of instructor.

Prerequisite: CGA 101, or written permission of instructor. Salem Community College Course Syllabus Course Title: Web Page Design Course Code: CGA 140 Lecture Hours: 2 Lab Hours: 2 Credits: 3 Course Description: Web Page Design will introduce the student to basic

More information

Computer and Information Science

Computer and Information Science Computer Programming Computer and Information Science Program Description This program is designed to prepare the student for employment as a computer programmer trainee. Certificate of Achievement and

More information

ERIE COMMUNITY COLLEGE COURSE OUTLINE A. COURSE NUMBER CS 215 - WEB DEVELOPMENT & PROGRAMMING I AND TITLE:

ERIE COMMUNITY COLLEGE COURSE OUTLINE A. COURSE NUMBER CS 215 - WEB DEVELOPMENT & PROGRAMMING I AND TITLE: ERIE COMMUNITY COLLEGE COURSE OUTLINE A. COURSE NUMBER CS 215 - WEB DEVELOPMENT & PROGRAMMING I AND TITLE: B. CURRICULUM: Mathematics / Computer Science Unit Offering PROGRAM: Web-Network Technology Certificate

More information

Web Designing with UI Designing

Web Designing with UI Designing Dear Student, Based upon your enquiry we are pleased to send you the course curriculum for Web Designing Given below is the brief description for the course you are looking for: Web Designing with UI Designing

More information

Dreamweaver CS5. Module 2: Website Modification

Dreamweaver CS5. Module 2: Website Modification Dreamweaver CS5 Module 2: Website Modification Dreamweaver CS5 Module 2: Website Modification Last revised: October 31, 2010 Copyrights and Trademarks 2010 Nishikai Consulting, Helen Nishikai Oakland,

More information

CG: Computer Graphics

CG: Computer Graphics CG: Computer Graphics CG 111 Survey of Computer Graphics 1 credit; 1 lecture hour Students are exposed to a broad array of software environments and concepts that they may encounter in real-world collaborative

More information

WEB DEVELOPMENT IA & IB (893 & 894)

WEB DEVELOPMENT IA & IB (893 & 894) DESCRIPTION Web Development is a course designed to guide students in a project-based environment in the development of up-to-date concepts and skills that are used in the development of today s websites.

More information

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS WEB DESIGN III: ADVANCED SITE DESIGN WEB 2812

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS WEB DESIGN III: ADVANCED SITE DESIGN WEB 2812 PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS WEB DESIGN III: ADVANCED SITE DESIGN WEB 2812 Class Hours: 3.0 Credit Hours: 3.0 Laboratory Hours: 0.0 Revised: Spring 2011 NOTE: This course is not

More information

4.2 Understand Microsoft ASP.NET Web Application Development

4.2 Understand Microsoft ASP.NET Web Application Development L E S S O N 4 4.1 Understand Web Page Development 4.2 Understand Microsoft ASP.NET Web Application Development 4.3 Understand Web Hosting 4.4 Understand Web Services MTA Software Fundamentals 4 Test L

More information

CSET 3100 Advanced Website Design (3 semester credit hours) IT Required

CSET 3100 Advanced Website Design (3 semester credit hours) IT Required CSET 3100 Advanced Website Design (3 semester credit hours) CSET Elective IT Required Current Catalog Description: This course covers the creation of HTML forms, creation of static and animated web graphics,

More information

Web Development. How the Web Works 3/3/2015. Clients / Server

Web Development. How the Web Works 3/3/2015. Clients / Server Web Development WWW part of the Internet (others: Email, FTP, Telnet) Loaded to a Server Viewed in a Browser (Client) Clients / Server Client: Request & Render Content Browsers, mobile devices, screen

More information

Software Development & Education Center PHP 5

Software Development & Education Center PHP 5 Software Development & Education Center PHP 5 (ADVANCE) Detailed Curriculum Advance PHP JQuery Basics Of JQuery Including the JQuery Library Code in an HTML Page JQuery Utilities Faster, Simpler, More

More information

ICAWEB502A Create dynamic web pages

ICAWEB502A Create dynamic web pages ICAWEB502A Create dynamic web pages Release: 1 ICAWEB502A Create dynamic web pages Modification History Release Release 1 Comments This Unit first released with ICA11 Information and Communications Technology

More information

Sharing Your Images Online / Using Lightroom to Create Web Galleries

Sharing Your Images Online / Using Lightroom to Create Web Galleries Sharing Your Images Online / Using Lightroom to Create Web Galleries John Bald www.johnbald.net We all have lots of images tucked away as slides, prints or image files on a hard drive. But no one can enjoy

More information

Flash Is Your Friend An introductory level guide for getting acquainted with Flash

Flash Is Your Friend An introductory level guide for getting acquainted with Flash Flash Is Your Friend An introductory level guide for getting acquainted with Flash by Tom Krupka A Brief History: Adobe Flash, which was previously called Macromedia Flash, is a set of multimedia technologies

More information

Using ADOBE CONTRIBUTE CS5

Using ADOBE CONTRIBUTE CS5 Using ADOBE CONTRIBUTE CS5 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: What s new Chapter 2: Setting up Contribute The

More information

Xtreeme Search Engine Studio Help. 2007 Xtreeme

Xtreeme Search Engine Studio Help. 2007 Xtreeme Xtreeme Search Engine Studio Help 2007 Xtreeme I Search Engine Studio Help Table of Contents Part I Introduction 2 Part II Requirements 4 Part III Features 7 Part IV Quick Start Tutorials 9 1 Steps to

More information

IGW+ Certificate. I d e a l G r o u p i n W e b. International professional web design,

IGW+ Certificate. I d e a l G r o u p i n W e b. International professional web design, IGW+ Certificate I d e a l G r o u p i n W e b International professional web design, Programming, CRM, online office automation, complete security, Secured Ecommerce and web site maintenance educational

More information

DOVER-SHERBORN HIGH SCHOOL PROGRAM OF STUDIES

DOVER-SHERBORN HIGH SCHOOL PROGRAM OF STUDIES DOVER-SHERBORN HIGH SCHOOL PROGRAM OF STUDIES 2014-2015 Educational Technologies Intro to Computer Applications Computer Graphics Astronomy Web Design & Development Intro to Programming (Visual Basic)

More information

Job Ready Assessment Blueprint. Web Design. Test Code: 2750 / Version: 01. Copyright 2011. All Rights Reserved.

Job Ready Assessment Blueprint. Web Design. Test Code: 2750 / Version: 01. Copyright 2011. All Rights Reserved. Job Ready Assessment Blueprint Web Design Test Code: 2750 / Version: 01 Copyright 2011. All Rights Reserved. General Assessment Information Blueprint Contents General Assessment Information Written Assessment

More information

2667A - Introduction to Programming

2667A - Introduction to Programming 2667A - Introduction to Programming Table of Contents Introduction Audience At Course Completion Prerequisites Microsoft Certified Professional Exams Student Materials Course Outline Introduction Elements

More information

Career & Technical Education Curriculum Alignment with Common Core ELA & Math Standards

Career & Technical Education Curriculum Alignment with Common Core ELA & Math Standards Career & Technical Education Curriculum Alignment with Common Core ELA & Math Standards National Standards 110 Course Title Grade Levels 11-12 Credit Value 1 Description This course provides students with

More information

Computer Science. Computer Science 207. Degrees and Certificates Awarded. A.S. Computer Science Degree Requirements. Program Student Outcomes

Computer Science. Computer Science 207. Degrees and Certificates Awarded. A.S. Computer Science Degree Requirements. Program Student Outcomes Computer Science 207 Computer Science (See Computer Information Systems section for additional computer courses.) We are in the Computer Age. Virtually every occupation in the world today has an interface

More information

Information Management & Design Course Descriptions Contact Drew Hunt at Andrew.hunt@kctcs.edu for more information

Information Management & Design Course Descriptions Contact Drew Hunt at Andrew.hunt@kctcs.edu for more information Information Management & Design Course Descriptions Contact Drew Hunt at Andrew.hunt@kctcs.edu for more information IMD 100 Introduction to Information Systems (3) Essential computer concepts and terminology

More information

WEB & GRAPHIC DESIGN WARREN CHASE JOY SMOKER ADOBE INDESIGN I

WEB & GRAPHIC DESIGN WARREN CHASE JOY SMOKER ADOBE INDESIGN I WARREN CHASE BA, Rochester Institute of Technology. Partner and Lead Designer at Digital Eye, LLC. Warren has over 15 years experience creating websites and applications for a variety of clients. www.digitaleye.com

More information

Course Description. Course Objectives

Course Description. Course Objectives MONTGOMERY COLLEGE Business, Accounting, Economics, Computer Applications, and Paralegal Studies Department Germantown Campus CMAP272 Professional Web Site Development Instructor: John Coliton Spring,

More information

PHP Tutorial From beginner to master

PHP Tutorial From beginner to master PHP Tutorial From beginner to master PHP is a powerful tool for making dynamic and interactive Web pages. PHP is the widely-used, free, and efficient alternative to competitors such as Microsoft's ASP.

More information

COURSE TITLE. Multimedia Design LENGTH. Full Year Grades 10-12 DEPARTMENT. Computer Department Barbara O Donnell, Supervisor SCHOOL

COURSE TITLE. Multimedia Design LENGTH. Full Year Grades 10-12 DEPARTMENT. Computer Department Barbara O Donnell, Supervisor SCHOOL COURSE TITLE Multimedia Design LENGTH Full Year Grades 10-12 DEPARTMENT Computer Department Barbara O Donnell, Supervisor SCHOOL Rutherford High School DATE Spring 2015 Multimedia Design Page 1 MULTIMEDIA

More information

Computer and Information Sciences

Computer and Information Sciences Computer and Information Sciences Dr. John S. Eickmeyer, Chairperson Computers are no longer huge machines hidden away in protected rooms and accessible to only a few highly-trained individuals. Instead,

More information

AJAX The Future of Web Development?

AJAX The Future of Web Development? AJAX The Future of Web Development? Anders Moberg (dit02amg), David Mörtsell (dit01dml) and David Södermark (dv02sdd). Assignment 2 in New Media D, Department of Computing Science, Umeå University. 2006-04-28

More information

Web Design. Links and Navigation

Web Design. Links and Navigation Web Design Links and Navigation Web Design Link Terms HTTP, FTP, Hyperlink, Email Links, Anchor HTTP (HyperText Transfer Protocol) - The most common link type and allows the user to connect to any page

More information

COURSE CONTENT FOR WINTER TRAINING ON Web Development using PHP & MySql

COURSE CONTENT FOR WINTER TRAINING ON Web Development using PHP & MySql COURSE CONTENT FOR WINTER TRAINING ON Web Development using PHP & MySql 1 About WEB DEVELOPMENT Among web professionals, "web development" refers to the design aspects of building web sites. Web development

More information

JOB READY ASSESSMENT BLUEPRINT WEB DESIGN - PILOT. Test Code: 3750 Version: 01

JOB READY ASSESSMENT BLUEPRINT WEB DESIGN - PILOT. Test Code: 3750 Version: 01 JOB READY ASSESSMENT BLUEPRINT WEB DESIGN - PILOT Test Code: 3750 Version: 01 Specific Competencies and Skills Tested in this Assessment: Internet Basics Describe the process of information exchange between

More information

Computer Science III

Computer Science III Passaic County Technical Institute Academy of Information Technology Curriculum of Instruction Computer Science III 2014 2015 COURSE DESCRIPTION: Computer Science III is a full year program for junior

More information

Information Technology Studies

Information Technology Studies Information Technology Studies Information Technology (T/V) Information Technology (T/V) Computer Operations (A/V) Structured Workplace Learning (A/V) Business Administration (A/V) The Information Technology

More information

INFORMATION BROCHURE Certificate Course in Web Design Using PHP/MySQL

INFORMATION BROCHURE Certificate Course in Web Design Using PHP/MySQL INFORMATION BROCHURE OF Certificate Course in Web Design Using PHP/MySQL National Institute of Electronics & Information Technology (An Autonomous Scientific Society of Department of Information Technology,

More information

Dreamweaver Domain 2: Planning Site Design and Page Layout

Dreamweaver Domain 2: Planning Site Design and Page Layout Dreamweaver Domain 2: Planning Site Design and Page Layout Adobe Creative Suite 5 ACA Certification Preparation: Featuring Dreamweaver, Flash, and Photoshop 1 Objectives Identify best practices for designing

More information

Dreamweaver CS5. Module 1: Website Development

Dreamweaver CS5. Module 1: Website Development Dreamweaver CS5 Module 1: Website Development Dreamweaver CS5 Module 1: Website Development Last revised: October 29, 2010 Copyrights and Trademarks 2010 Nishikai Consulting, Helen Nishikai Oakland, CA

More information

SKILLS HIGHLIGHTS: W e b a n d G r a p h i c D e s i g n e r

SKILLS HIGHLIGHTS: W e b a n d G r a p h i c D e s i g n e r Henry Lee W e b a n d G r a p h i c D e s i g n e r Phone: 416-738-4911 E-mail: siulunglee@yahoo.com Portfolio URL: http://www.centralconnect.ca/henry/ SKILLS HIGHLIGHTS: Web Administration and New Media

More information

Creating Web Pages with Netscape/Mozilla Composer and Uploading Files with CuteFTP

Creating Web Pages with Netscape/Mozilla Composer and Uploading Files with CuteFTP Creating Web Pages with Netscape/Mozilla Composer and Uploading Files with CuteFTP Introduction This document describes how to create a basic web page with Netscape/Mozilla Composer and how to publish

More information

CSE 203 Web Programming 1. Prepared by: Asst. Prof. Dr. Maryam Eskandari

CSE 203 Web Programming 1. Prepared by: Asst. Prof. Dr. Maryam Eskandari CSE 203 Web Programming 1 Prepared by: Asst. Prof. Dr. Maryam Eskandari Outline Basic concepts related to design and implement a website. HTML/XHTML Dynamic HTML Cascading Style Sheets (CSS) Basic JavaScript

More information

Diploma of Website Development

Diploma of Website Development Diploma of Website Development Program Description The BHCK Diploma of Website Development provides the skills and knowledge for a graduate to design, build and manage websites as an independent web developer

More information

Computer Science. 232 Computer Science. Degrees and Certificates Awarded. A.S. Degree Requirements. Program Student Outcomes. Department Offices

Computer Science. 232 Computer Science. Degrees and Certificates Awarded. A.S. Degree Requirements. Program Student Outcomes. Department Offices 232 Computer Science Computer Science (See Computer Information Systems section for additional computer courses.) We are in the Computer Age. Virtually every occupation in the world today has an interface

More information

SPLIT BLOCK FINAL Web Design

SPLIT BLOCK FINAL Web Design SPLIT BLOCK FINAL Web Design MULTIPLE CHOICE 1. A(n) site shares user-created content with site visitors. a. portal c. informational/educational b. Web 2.0 d. business 2. sites include Erly, Flickr, Pinterest,

More information

How To Design The Web And The Internet

How To Design The Web And The Internet 1 The Environment and the Tools Web Design, 4 th Edition Chapter Objectives Describe the Internet and the World Wide Web Discuss ways to access the Internet and the Web Categorize types of Web sites Identify

More information

Next Generation Lab. A solution for remote characterization of analog integrated circuits

Next Generation Lab. A solution for remote characterization of analog integrated circuits Next Generation Lab A solution for remote characterization of analog integrated circuits Background Goals Technologies Physical architecture Software architecture Conclusion Outline Background Based on

More information

Saucon Valley School District Planned Course of Study

Saucon Valley School District Planned Course of Study Course Title Grade Level: 10-12 Credits: 0.5 Content Area / Dept. Business / Technology Education Length of Course: Quarter Author(s): Gemma Cody Course Description: is an introductory course designed

More information

Boston University. Overview and Description: Instructor, Contact Email, Office Hours and Blackboard Site: Topic Coverage.

Boston University. Overview and Description: Instructor, Contact Email, Office Hours and Blackboard Site: Topic Coverage. Boston University Metropolitan College MET CS601 - Web Application Development Overview and Description: This course focuses on building core competencies in web design and development. It begins with

More information

Certified PHP Developer VS-1054

Certified PHP Developer VS-1054 Certified PHP Developer VS-1054 Certification Code VS-1054 Certified PHP Developer Vskills certification for PHP Developers assesses the candidate for developing PHP based applications. The certification

More information

RARITAN VALLEY COMMUNITY COLLEGE ACADEMIC COURSE OUTLINE. CISY 105 Foundations of Computer Science

RARITAN VALLEY COMMUNITY COLLEGE ACADEMIC COURSE OUTLINE. CISY 105 Foundations of Computer Science I. Basic Course Information RARITAN VALLEY COMMUNITY COLLEGE ACADEMIC COURSE OUTLINE CISY 105 Foundations of Computer Science A. Course Number and Title: CISY-105, Foundations of Computer Science B. New

More information

Lesson Overview. Getting Started. The Internet WWW

Lesson Overview. Getting Started. The Internet WWW Lesson Overview Getting Started Learning Web Design: Chapter 1 and Chapter 2 What is the Internet? History of the Internet Anatomy of a Web Page What is the Web Made Of? Careers in Web Development Web-Related

More information

Web Hosting Training Guide. Web Hosting Training Guide. Author: Glow Team Page 1 of 28 Ref: GC278_v1.1

Web Hosting Training Guide. Web Hosting Training Guide. Author: Glow Team Page 1 of 28 Ref: GC278_v1.1 Web Hosting Training Guide Internet Explorer version Doc Ref: GC278_v1.1 Author: Glow Team Page 1 of 28 Ref: GC278_v1.1 Contents Introduction... 3 What is the Glow Web Hosting service?... 3 Why use the

More information

Short notes on webpage programming languages

Short notes on webpage programming languages Short notes on webpage programming languages What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language is a set of

More information

Accessing Data with ADOBE FLEX 4.6

Accessing Data with ADOBE FLEX 4.6 Accessing Data with ADOBE FLEX 4.6 Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Chapter 1: Accessing data services overview Data

More information

ecommercesoftwareone Advance User s Guide -www.ecommercesoftwareone.com

ecommercesoftwareone Advance User s Guide -www.ecommercesoftwareone.com Advance User s Guide -www.ecommercesoftwareone.com Contents Background 3 Method 4 Step 1 - Select Advance site layout 4 Step 2 - Identify Home page code of top/left and bottom/right sections 6 Step 3 -

More information

COMP-205 COURSE SYLLABUS FOR WEB DESIGN TECHNOLOGIES. Darla Thornburg Instructor

COMP-205 COURSE SYLLABUS FOR WEB DESIGN TECHNOLOGIES. Darla Thornburg Instructor Coffeyville Community College COMP-205 COURSE SYLLABUS FOR WEB DESIGN TECHNOLOGIES Darla Thornburg Instructor Page 1 of 7 COURSE NUMBER: COURSE TITLE: COMP-205 Web Design Technologies CREDIT HOURS: Three

More information

DESIGNING HTML HELPERS TO OPTIMIZE WEB APPLICATION DEVELOPMENT

DESIGNING HTML HELPERS TO OPTIMIZE WEB APPLICATION DEVELOPMENT Abstract DESIGNING HTML HELPERS TO OPTIMIZE WEB APPLICATION DEVELOPMENT Dragos-Paul Pop 1 Building a web application or a website can become difficult, just because so many technologies are involved. Generally

More information

spring semester course schedule

spring semester course schedule spring semester course schedule This course is designed to cover the various techniques of web page construction and the graphic design considerations unique to the internet. A challenge for many will

More information

Web Pages. Static Web Pages SHTML

Web Pages. Static Web Pages SHTML 1 Web Pages Htm and Html pages are static Static Web Pages 2 Pages tagged with "shtml" reveal that "Server Side Includes" are being used on the server With SSI a page can contain tags that indicate that

More information

Digital Web Design Syllabus/Online Course Plan

Digital Web Design Syllabus/Online Course Plan Digital Web Design Syllabus/Online Course Plan Certificated Teacher: Date: 2015-2016 Desired Results Digital Web Design: Grades 9 12 Credit: X one semester (.5) two semesters (1) Estimate of hours per

More information