CHAPTER 4 LINKS Creating links between pages Linking to other sites Email links.

Slides:



Advertisements
Similar presentations
Working with Images and HTML
Advertisements

Iframes & Images Using HTML.
Web Development & Design Foundations with XHTML Chapter 4 Key Concepts.
WRITING LINKS IMDB WRITING LINKS IMDB THE PAGE THE LINK TAKES YOU TO.
Adobe Flash CS4 – Illustrated Unit E: Optimizing and Publishing a Movie.
© 2011 Delmar, Cengage Learning Chapter 13 Preparing Graphics for the Web.
Multimedia for the Web: Creating Digital Excitement Multimedia Element -- Graphics.
CIS101 Introduction to Computing HTML Project Two.
CIS101 Introduction to Computing Week 06. Agenda Your questions Resume project HTML Project Two This week online Next class.
Chapter 4 Adding Images. Inserting and Aligning Images Using CSS When you choose graphics to add to a web page, it’s important to use graphic files in.
Chapter 5 Web Graphics Styling Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Chapter 3 Adding Images in HTML. Agenda Understanding Web Page Images Prepare Your Images for the Web Insert an Image Specify an Image Size Add Alternative.
Chapter 3 Dreamweaver: Part I The Web Warrior Guide to Web Design Technologies.
Unit E. Image Measurements The size of an image can be measured 2 ways: Dimensions: the height and width, measured in pixels. File Size: measured in Kilobytes.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
Chapter 4 Adding Images. Chapter 4 Lessons Introduction 1.Insert and align images 2.Enhance an image and use alternate text 3.Insert a background image.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
IT Introduction to Website Development Welcome!
Chapter 1 Review Images Links Images II Pictures and Extensions.
1 Mastering the Internet and HTML Images and Image Tags.
Images Inserting an image on a web page. chcslonline.org2 ITEMS REQUIRED Go to the course download page on the course website and download the 3 images.
Images (1) Three most popular formats – Graphics Interchange Format (GIF) – Joint Photographic Experts Group (JPEG) – Portable Network Graphics (PNG) –
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
Chapter 5 Web Graphics Styling Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Images & Image Maps 16 th February. Images & Image Maps Web authors can add icons, logos and high impact images to their pages Images enhance web pages.
1.  Use the anchor element to link from page to page  Configure absolute, relative, and hyperlinks  Configure relative hyperlinks to web pages.
8 Using Web Graphics Section 8.1 Identify types of graphics Identify and compare graphic formats Describe compression schemes Section 8.2 Identify image.
1 Web Developer Foundations: Using XHTML Chapter 4 Key Concepts.
1 Web Developer & Design Foundations with XHTML Chapter 4 Key Concepts.
Files, File Format Folders Paths, URL Absolute Addresses Relative Addresses © Ms. Masihi.
Adobe Dreamweaver CS3 Revealed CHAPTER THREE: WORKING WITH TEXT AND IMAGES.
Web Design (7) Images (1). Images and the Image Element Images can be placed in the flow of text..jpg,.png and.gif image files work in web pages The img.
Adding Images Learning Web Design: Chapter 7. Using an Image Images have many purposed on a Web site Used as a static image To add illustration: ex. A.
Task 3 Store and Present Your Digital Entry Guidance Notes.
Things to Remember When working with digital images.
Adding Images. XHTML Element ElementAttributeAttribute Value Closing tag AttributeAttribute Value The src attribute supplies the name and location of.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
Project Two Adding Web Pages, Links, and Images Define and set a home page Add pages to a Web site Describe Dreamweaver's image accessibility features.
Macromedia Dreamweaver 8 Revealed AND GRAPHICS WORKING WITH TEXT.
Task 3 Store and Present Your Digital Entry Guidance Notes.
Links Building a Website Lesson 5. Links There are various ways to use links on a website: Link to other sites Link to other pages on the same site .
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
1 2/22/05CS120 The Information Era Chapter 4 Basic Web Page Construction TOPICS: Images and placing pages on the server.
Chapter 13 Preparing Graphics for the Web. Creating Slices When you create graphics for the web, you will need to pay attention to different considerations.
REEM ALMOTIRI Information Technology Department Majmaah University.
WEB GRAPHICS EXPLORING COMPUTER SCIENCE - LESSON 3-4.
HTML5 and CSS3 Illustrated Unit F: Inserting and Working with Images.
Images can set the tone for a site in less time than it takes to read a description. CHOOSING IMAGES FOR YOUR SITE.
13 June – Session : Graphics Different types of Graphics for the web Features of image editing software Good practice for image editing.
01 – HTML (1) Informatics Department Parahyangan Catholic University.
Photoshop CS6 – Nelson Unit 3: Photoshop CS6. Objectives Define photo editing software Start Photoshop and view the workspace Use the Zoom tool and the.
HTML Links CS 1150 Spring 2017.
Exploring Computer Science - Lesson 3-4
Exploring Computer Science - Lesson 3-4
Inserting and Working with Images
DW Tutorial 5 Sessions 5.1 & 5.2 REVIEW
Hosted by Coach Slanina
Exploring Computer Science - Lesson 3-4
HTML Images CS 1150 Spring 2017.
Chapter 3 Images.
Adding Images.
Chapter 2 Adding Web Pages, Links, and Images
Basic HTML and Embed Codes
HTML Images.
HTML Images CS 1150 Fall 2016.
Adding Images.
Adding Images.
Adding Images.
HTML Links CS 1150 Fall 2016.
Adding Images.
Presentation transcript:

CHAPTER 4 LINKS Creating links between pages Linking to other sites links

LINKISMS  Links from one website to another  Links from one page to another on the same website  Links from one part of a web page to another part of the same page  Links that open in a new browser window  Links that start up your program and address a new  to someone

WRITING LINKS  Links are created using the element. Users can click on anything between the opening tag and the closing tag. You specify which page you want to link to using the href attribute .

LINKING TO OTHER SITES

LINKS TO OTHER SITES

LINKING TO OTHER PAGES ON THE SAME SITE

DIRECTORY STRUCTURE

RELATIVE URLS  Relative URLs can be used when linking to pages within your own website. They provide a shorthand way of telling the browser where to find your files.  Same Folder Reviews  Child Folder Listings  Grandchild Folder Reviews  Parent Folder Home  GrandParent Folder Home

LINKS  Jon

OPENING LINKS IN A NEW WINDOW

LINKING TO A SPECIFIC PART OF THE SAME PAGE

LINKING TO A SPECIFIC PART OF ANOTHER PAGE

EXAMPLE LINKS

SUMMARY  Links are created using the element  The element uses the href attribute to indicate the page you are linking to.  If you are linking to a page within your own site, it is best to use relative links rather than qualified URLs.  You can create links to open programs with an address in the "to" field  You can use the id attribute to target elements within a page that can be linked to.

CHAPTER 5 IMAGES  How to add images to pages  Choosing the right format  Optimizing images for the web

IMAGES  Include an image in your web pages using HTML  Pick which image format to use  Show an image at the right size  Optimize an image for use on the web to make pages load faster  You can also use CSS to include images in your pages using the background-image property, which you will meet on pages

IMAGES  Images should  Stock photos       Online extra

STORING IMAGES ON YOUR SI TE  If you are building a site from scratch, it is good practice to create folder for all of the images the site uses.

ADDING IMAGES   Src  Alt  title

HEIGHT & WIDTH OF IMAGES

WHERE TO PLACE IMAGES IN YOUR CODE

FOUR RULES FOR CREATING IMAGES  Save images in the right format  Save images at the right size  Use the correct resolution  Use the correct format RGB not CMYK

TOOLS TO EDIT & SAVE IMAGES  Adobe Photoshop  Other Software  Adobe Fireworks  Pixelmator  PaintShop Pro  Paint.net

IMAGE DIMENSIONS  REDUCING IMAGE SIZE  INCREASING IMAGE SIZE  CHANGING SHAPE

CROPPING IMAGES  PORTRAIT  LANDSCAPE

IMAGE RESOLUTION  Images created for the web should be saved at a resolution of 72 ppi. The higher the resolution of the image, the larger the size of the file.  JPGs, GIFs, and PNGs belong to a type of image format known as bitmap.

VECTOR IMAGES  Vector images differ from bitmap images and are resolution- independent. Vector images are commonly created in programs such as Adobe Illustrator.

ANIMATED GIFS  Animated GIFs show several frames of an image in sequence and therefore can be used to create simple animations.

TRANSPARENCY  Transparent GIF  PNG

EXAMINING IMAGES ON THE WEB  Checking the Size of Images  Downloading Images

HTML 5: FIGURE AND FIGURE CAPTION

SUMMARY  The element is used to add images to a web page.  You must always specify a src attribute to indicate the source of an image and an alt attribute to describe the content of an image.  You should save images at the size you will be using them on the web page and in the appropriate format.  Photographs are best saved as JPEGs; illustrations or logos that use flat colors are better saved as GIFs.