Chapter 5 Creating an Image Map.

Slides:



Advertisements
Similar presentations
© 2002 D & D Enterprises 1 Linking Images For Navigation & Clickable Image Maps.
Advertisements

Creating Tables in a Web Site
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 8: Image Techniques ©2007 Prosoft Learning Corporation All rights reserved ITD 110 Web Page.
Creating and Editing a Web Page Using Inline Styles
Chapter 5 Creating an Image Map
Chapter 5 Creating an Image Map.
Image Maps and Graphics Internet Basics and Far Beyond! Mrs. Wilson.
CIS101 Introduction to Computing Week 07. Agenda Your questions Resume project Review Project Two HTML Project Three This week online Next class.
CIS101 Introduction to Computing Week 06. Agenda Your questions Resume project HTML Project Two This week online Next class.
CIS101 Introduction to Computing HTML Project Two.
COS 125 DAY 16. Agenda Second Capstone Progress Report Due March 23 (next class ) Assignment #4 assigned –Due Tuesday March 23 Exam #3 will March 26 –Castro.
CIS101 Introduction to Computing Week 06. Agenda Your questions Resume project HTML Project Two This week online Next class.
COS 125 DAY 15. Agenda Second Capstone Progress Report Due Mar 24 Assignment #4 assigned –Due Thursday, March 24 Exam #3 will be on March 24 –Castro Chaps.
Hyperlinks. Working with Linked Images  A standard practice on the Web is to turn the Web site’s logo into a hypertext link pointing to the home page.
Creating Tables in a Web Site Using an External Style Sheet HTML5 & CSS 7 th Edition.
Using Frames in a Web Site
Creating Tables in a Web Site Using an External Style Sheet
Creating Tables in a Web Site.  Define table elements  Describe the steps used to plan, design, and code a table  Create a borderless table to organize.
HTML Comprehensive Concepts and Techniques Second Edition Creating Tables in a Web Site October 23, 2012.
HTML Comprehensive Concepts and Techniques Third Edition Project 3 Creating Web Pages with Links, Images, and Formatted Text.
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
Creating Tables in a Web Site
HTML Comprehensive Concepts and Techniques Second Edition Project 3 Creating Tables in a Web Site.
Creating an Expression Web Site
Web Technologies Website Development Trade & Industrial Education
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 8: Image Techniques.
CSCE Chapter 5 (Links, Images, & Multimedia) CSCE General Applications Programming Benito Mendoza 1 By Benito Mendoza Department.
Hyperlinks. Linking pages…Hyperlinks 2 Lecture 8  Hyperlink “A clickable HTML element that will direct the web browser to display a different Web page.
Create an Image Map Web Publishing & Design. Hot Spots  hot spot: An area on an object containing a hyperlink. An entire object can be a single hot spot,
Using FrontPage Express. Slide 1 Standard toolbars and menus Time indicator: gives an approximation of download time of the page.
Website Development with Dreamweaver
HTML Comprehensive Concepts and Techniques Second Edition Project 2 Creating a Web Site with Links.
Creating Web Pages with Links, Images, and Formatted Text
HTML, XHTML, and CSS Chapter 8 Adding Multimedia Content to Web Pages.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 2 The Visual Basic.NET Integrated Development Environment.
CIT 256 Dreamweaver Sites and Image Maps Dr. Beryl Hoffman.
Project 2 Adding Web Pages, Links, and Images Dreamweaver MX 2004 Concepts and Techniques.
Creating Tables in a Web Site
HTML Project 4 Creating an Image Map.
1 Creating a Second Web Page This section shows you how to create the Huntington Beach Web site.
Dreamweaver CS4 Concepts and Techniques Chapter 2 Adding Web Pages, Links, and Images.
HTML Concepts and Techniques Fifth Edition Chapter 3 Creating Web Pages with Links, Images, and Formatted Text.
HTML Concepts and Techniques Fifth Edition Chapter 6 Using Frames in a Web Site.
Site Development Foundations © 2004 ProsoftTraining All rights reserved.
USING WORDPRESS TO CREATE A WEBSITE (RATHER THAN A BLOG) STEP-BY-STEP INSTRUCTIONS.
IT: Web Technologies: Web Animation 1 Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Designing Web Site Layout Using.
HTML Concepts and Techniques Fourth Edition Project 5 Creating an Image Map.
 You can also divide an image into regions that link to different documents depending on where someone clicks.  This is called an imagemap, and any.
HTML Concepts and Techniques Fifth Edition Chapter 4 Creating Tables in a Web Site.
HTML Concepts and Techniques Fifth Edition Chapter 3 Creating Web Pages with Links, Images, and Formatted Text.
1 Mapping Coordinates Find the x- and y- coordinates for the images, relative to the x-axis and y-axis In a coordinate pair, the first number is the x-coordinate.
Introducing Dreamweaver. Dreamweaver The web development application used to create web pages Part of the Adobe creative suite.
1 Creating the Home Page. 2 Creating a Table Table attributes  Two rows and two columns  No border  Left-aligned Change the vertical alignment of the.
Creating and Editing a Web Page
HTML Comprehensive Concepts and Techniques Second Edition Project 2 Creating a Web Site with Links.
For the World Wide Web.  Gary Hayward is an amateur photographer and digital camera enthusiast. He has decided to create a website named CAMshots, where.
Creating and Editing a Web Page Using Inline Styles
1 Your Web Page title body of Web page main heading H2 heading bulleted list paragraph.
Creating Web Pages with Links, Images, and Embedded Style Sheets
XP New Perspectives on Macromedia Dreamweaver MX 2004 Tutorial 5 1 Adding Shared Site Elements.
Chapter 5.   A special type of inline image in which one or more areas is a hotspot (clickable) Image Map.
Linking Using Image Maps. What is an Image Map? An image map is an image in which several areas of an image are linked to different sites The areas of.
Microsoft Expression Web - Illustrated Unit A: Getting Started With Microsoft Expression Web.
Project 02 Creating and Editing a Web Page Concept Map of Unit Creating and Editing a Web Page Key Learning Understand the elements to create a web page.
CIS101 Introduction to Computing Week 07 Spring 2004.
Creating Tables in a Web Site Using an External Style Sheet
Project 5 Creating an Image Map.
Creating an Image Map.
Project 4 Creating an Image Map.
Designing Web Site Layout Using Fireworks
Presentation transcript:

Chapter 5 Creating an Image Map

Chapter Objectives Define terms relating to image mapping List the differences between server-side and client-side image maps Name the two components of an image map and describe the steps to implement an image map Distinguish between appropriate and inappropriate images for mapping Sketch hotspots on an image Describe how the x- and y-coordinates relate to vertical and horizontal alignment Open an image in Paint and use Paint to map the coordinates Chapter 5: Creating an Image Map

Chapter Objectives Create the home page and additional Web pages Create a table, insert an image into a table, and use the usemap attribute to define an image map Add text to a table cell and create a horizontal menu bar with text links Use the <map> </map> tags to start and end a map Use the <area> tag to indicate the shape, coordinates, and URL for a mapped area Change link colors Chapter 5: Creating an Image Map

Image maps - examples Turn to pg. 205 – we’ll start there looking at examples of image maps. Hazard of using image maps – if images DON’T load, users can’t navigate the page. To help remedy this, make sure you have text links to the same content. Discuss some of the ways image maps are used Just basically create hot spots in a image that are clickable. Chapter 5: Creating an Image Map

Server-side vs. client-side Server-side image maps – displayed by the client in a browser but implemented by a program that runs on the server. Web server does all the work – processes the X,Y coordinates and relates it back to the client. Client-side image maps – Browser does all the work. Faster response time! This is the preferred way. HTML code contains the X,Y coordinates and takes care of it all. *NOTE – Older browsers might not support client-side image mapping. Chapter 5: Creating an Image Map

Creating an image map Pg. 211-212 – see how the images have the hot spots sketched out. You have to determine the X,Y coordinates for each area you want to be clickable. X-axis – horizontal Y-axis – vertical Look at the status bar in Paint to see the coordinates. Chapter 5: Creating an Image Map

Different shapes Rectangle – top left and bottom right corners Circle – Center point and the radius (you must calculate this based on the distance from the center point to the edge of the circle) Polygon – Coordinates for each corner you wish to use See pg. 214-215 for examples. Chapter 5: Creating an Image Map

Copy files from Public Create a Ch. 5 directory in your home directory. Go to P:\HTML Stuff\Chapter05\ChapterFiles and copy all of these to your home directory Read the project on pg. 202. Open southwest.jpg in PAINT. Chapter 5: Creating an Image Map

Opening an Image File in Paint Chapter 5: Creating an Image Map

Locating X- and Y- Coordinates of an Image Do pg. 220-221 to locate the coordinates for this image. We use Paint, but there are other image mapping tools such as: Mapedit (Windows, UNIX, Mac OS) CoffeeCup Image Mapper – Windows Imaptool – Linux/X-Window There are also tools you can use to create images that can be used for image mapping such as Adobe Photoshop! Chapter 5: Creating an Image Map

Starting Notepad and Entering Initial HTML Tags Make sure you use your template file – it has the correct DOCTYPE statement for validation! Then make it match this table (pg. 223) Chapter 5: Creating an Image Map

Creating a Table DO pg. 225-229 – Creating a table When you are finished, it will look like the next slide – pg. 229 Chapter 5: Creating an Image Map

Ending the Table Chapter 5: Creating an Image Map

Coding an image map Look on pg. 230 to see the tags and attributes for image mapping. Chapter 5: Creating an Image Map

Creating an Image Map Do pg. 231 When finished, validate this and show it to me. This finishes our first page, now we have to create the subsequent ‘Linked’ pages for our image. Chapter 5: Creating an Image Map

Validating, Viewing, and Printing a Web Page Chapter 5: Creating an Image Map

Copying and Pasting HTML Code to a New File Do pages 237-242 to create the 2nd page of this process. Validate this page… it should look like the following slide (pg. 245) Show me. Chapter 5: Creating an Image Map

Validating, Viewing, and Printing the Web Page Chapter 5: Creating an Image Map

Testing the Links Click the Home link on the Arizona Web page Click the Nevada area on the image map on the home page Click the California link on the Nevada Web page Click the Home link on the California Web page If any of the links do not work correctly, return to Notepad to modify the HTML code, save the changes, and then retest the links in the browser Chapter 5: Creating an Image Map

Testing the Links Chapter 5: Creating an Image Map

Finished…now What? Homework – Due next class meeting Got to scsite.com/html5e/learn and do the practice test. You will get the grade you turn in. Project: In the Lab – Lab 3 Pay attention to details and do EXACTLY what you are asked to do. For state web sites, you can include convention/visitors bureau, parks, etc. in addition to the ones recommended. JUST PICK ONE TYPE! Chapter 5: Creating an Image Map