adding pictures to your website week 8

30

Upload: caesar

Post on 10-Jan-2016

26 views

Category:

Documents


2 download

DESCRIPTION

Adding pictures to your website Week 8. Displaying “images” on web pages. How to Display “images” on web pages. What to Display…. How to create, change, modify images. How to Display “images” on web pages. Here is a simple rule of thumb:. Solid colors and sharp lines. “ GIF ”. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Adding pictures to     your website Week 8
Page 2: Adding pictures to     your website Week 8

Adding pictures to your website

Week 8

Page 3: Adding pictures to     your website Week 8

Displaying “images” on web pages

How to Display “images” on web pages

What to Display….How to create, change, modify images.

Page 4: Adding pictures to     your website Week 8

How to Display “images” on web pages

“ GIF ”

“ JPG ”

Here is a simple rule of thumb:

Lots of colors

Solid colors and sharp lines

Page 5: Adding pictures to     your website Week 8

“ GIF ” Solid colors and sharp lines

Page 6: Adding pictures to     your website Week 8

“ JPG ” Lots of colors

Page 7: Adding pictures to     your website Week 8

“ JPG ”

High ResolutionLow Resolution

1,079K bytes57K bytes

Resolution = 72 DPISize to fit

Page 8: Adding pictures to     your website Week 8

How to Display “images” on web pages

Image Tag

<img src =“file.gif ”>

Page 9: Adding pictures to     your website Week 8

How to Display “images” on web pages

Image Tag

< img src=“file.gif ” alt=“alt text” >

Page 10: Adding pictures to     your website Week 8

How to Display “images” on web pages

Image Tag

< img src=“file.gif ” alt=“alt text” > Options:

Border = “0”

Border = “1”

Border

Page 11: Adding pictures to     your website Week 8

How to Display “images” on web pages

Image Tag

<img src=“horse.gif” alt=“My Horse” border=“1”>

Page 12: Adding pictures to     your website Week 8

Options: Border = “ # ”

Align = left, right, top, middle, bottom

This is an example ofan image that is aligned to the left of the text.

This is an example ofan image that is aligned to the right of the text.If

more text is displayed than the size of the picture it will wrap around the picture like this.

Page 13: Adding pictures to     your website Week 8

Options: Border = “ # ”

Align = left, right, top, middle, bottom

This is top

This is middle

Page 14: Adding pictures to     your website Week 8

Options: Border = “ # ”

Align = left, right, top, middle, bottom

This is bottom

Page 15: Adding pictures to     your website Week 8

Options: Border = “ # ”

Align = left, right, top, middle, bottom

Width = “pixels”Height = “pixels”

Width OR Height

<img src=“horse.gif” alt=“My Horse”>

Height = 125Width = 125

Page 16: Adding pictures to     your website Week 8

Options: Border = “ # ”

Align = left, right, top, middle, bottom

Width = “pixels”Height = “pixels”

Width OR Height

<img src=“horse.gif” alt=“My Horse”>

Height = 125Width = 125

Page 17: Adding pictures to     your website Week 8

<img src=“horse.gif” alt=“My Horse” >

Options: Border = “ # ”

Align = left, right, top, middle, bottom

Width = “pixels”Height = “pixels”

Width OR Height

Width = “200”

Actual size125 pixels

Displayed size200 pixels

Page 18: Adding pictures to     your website Week 8

<img src=“horse.gif” alt=“My Horse” width=“200 height=“100” >

Options: Border = “ # ”

Align = left, right, top, middle, bottom

Width = “pixels”Height = “pixels”

Width OR Height

Page 19: Adding pictures to     your website Week 8

Options: Border = “ # ”

Align = left, right, top, middle, bottom

Width = “pixels”Height = “pixels”

Title = “My Dog Fido”

<img src=“horse.gif” alt=“My Horse” width=“200” title=“My Dog Fido”>

Page 20: Adding pictures to     your website Week 8

My Web Page

Here is a picture of my horse

Page 21: Adding pictures to     your website Week 8

My Web Page

Here is a picture of my horse

Page 22: Adding pictures to     your website Week 8

Background ImageUsed in <BODY> tag

<body><body background=“back.gif”>

<body background=“back.gif” bgproperties=“fixed”>

Page 23: Adding pictures to     your website Week 8

A review!

Image Tag:<img src=“filname.gif” >

.gif = Solid colors and sharp lines

.jpg = Lots of colors = Pictures

= Clipart

alt=“ A picture of my horse ” >Options:

Align = left, right, top, middle, bottom

Width or Height = “pixels ”Border = “pixels”

Background Image < body background = “ bg.gif ”>

Option: bgproperties = “fixed”

Resolution = 72 DPI - Size to fit

Title = “My Dog”

Page 24: Adding pictures to     your website Week 8

spacer.gifWidthHeightBorderColor

= “1” pixel= “1” pixel= “0”= “transparent”

Eat: Fruits & Veggies

Eat: Fruits & Veggies

Eat:&nbsp; &nbsp; &nbsp; Fruits & Veggies

Page 25: Adding pictures to     your website Week 8

spacer.gif

Eat: Fruits & Veggies

Eat: Fruits & Veggies

Eat:&nbsp; &nbsp; &nbsp; Fruits & Veggies

Eat: <img src=“spacer.gif” width=“25” height=“1” > Fruits & Veggies

Eat: Fruits & Veggies

Page 26: Adding pictures to     your website Week 8

Wake up class!

It’s time to get to work!

Page 27: Adding pictures to     your website Week 8

Class Web site:

udel.edu/~frankr

Page 28: Adding pictures to     your website Week 8

Download:

Sample pictures

Page 29: Adding pictures to     your website Week 8

pict1.gif pict2.gif

pet4.gifpet3.gifpet2.gifpet1.gif

bg1.gif, bg2.gif, bg3.gif, bg4.gif, bg5.gif

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur gravida. Fusce non orci. Proin lacinia pellentesque ante. Donec dictum molestie elit. Pellentesque pede tortor, congue in, suscipit id, lacinia ac, nisl. Phasellus eleifend lorem et est. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Phasellus lacinia ligula nec sapien. Maecenas libero felis, molestie in, placerat a, vulputate quis, ligula. Ut convallis. Aliquam erat volutpat. Phasellus egestas. Vestibulum vel est tempus eros faucibus interdum. Sed eget mi vel quam semper placerat. Donec sed justo non odio dignissim lobortis. Praesent nec elit vel lacus consectetuer aliquet. Vivamus tincidunt placerat ipsum. Duis justo.

lipsom.txt

Page 30: Adding pictures to     your website Week 8

Lesson 10 - EXAMPLES

ex01.html - basic image tagex02.html - border range from 0 through 100ex03.html - Image in various sizes using Height and/or Widthex04.html - Image aligned to LEFT of textex05.html - Image aligned to RIGHT of textex06.html - TOP, MIDDLE & BOTTOM alignex07.html - TOP align ( with more than one line )ex08.html - Multiple images w/ various aligning

ex09.html - Background 1ex10.html - Background 2 ( too busy )ex11.html - Background 3 ( use of a Table #1)ex12.html - Background 4 ( use of a Table #2)ex13.html - Same background as "ex10.html" with table & bgproperties="fixed"