CS 200 – Graphics in Web Pages Banners, Bullets, Backgrounds, and Images.

Slides:



Advertisements
Similar presentations
Computers: Tools for an Information Age Writing Your Own Web Page: Using HTML and Web Authoring Tools.
Advertisements

Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 8: Image Techniques ©2007 Prosoft Learning Corporation All rights reserved ITD 110 Web Page.
Web Design with Cascading Style Sheet Lan Vu. Overview Introduction to CSS Designing CSS Using Visual Studio to create CSS Using template for web design.
Introduction to HTML Lists, Images, and Links. Before We Begin Save another file in Notepad Save another file in Notepad Open your HTML, then do File>Save.
HTML Hypertext Markup Language –First proposed by CERN in 1989 –It is non-linear so it allows you to jump from place to place –Markup refers to the structure.
LIST- HYPERLINK- IMAGES
Web Page Development Identify elements of a Web Page Start Notepad
Creating and Editing a Web Page
Graphics and Animation Chapter 8. 8 Graphics in Multimedia Graphics are an element that virtually all multimedia applications include.
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.
BASIC HTML TUTORIAL Amber Brady. HTML tags are keywords surrounded by angle brackets like HTML tags normally come in pairs like and The first tag in a.
© Cheltenham Computer Training 2001 Macromedia Dreamweaver 4 - Slide No 1 Macromedia Dreamweaver 4 Advanced Level Course.
Copyright ©: SAMSUNG & Samsung Hope for Youth. All rights reserved Tutorials Software: Presentations Suitable for: Beginner Improver Advanced.
PowerPoint Basics (for Macs) 1. Before you start your project, you need: Completed project storyboard. Files with images, sound, or video already saved.
Images (1) Three most popular formats – Graphics Interchange Format (GIF) – Joint Photographic Experts Group (JPEG) – Portable Network Graphics (PNG) –
Images in web pages. Images Why do we use images? They add interest, and keep the user from being bored They convey information –Charts are easier to.
Images in HTML PowerPoint How images are used in HTML.
Copyright 2006 South-Western/Thomson Learning Chapter 17 Creating and Linking Web Pages.
Creating and Linking Web Pages Copyright 2006 South-Western/Thomson Learning.
File Name Extensions Computer Applications 7th grade.
Copyright © 2003 Pearson Education, Inc. Slide 4-1 Created by, Stephanie Ludi, Rochester Institute of Technology—NY Basic Web Page Construction Tables,
Adobe Dreamweaver CS3 Revealed CHAPTER THREE: WORKING WITH TEXT AND IMAGES.
HTML: Hyptertext Markup Language Doman’s Sections.
Project 2 Web Page Design Creating and Editing a Web Page Pages
Academic Year, Spring Semester Bilkent University - Faculty of Art, Design and Architecture Department of Communication and Design CS 153 Introduction.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
INTRODUCTORY Tutorial 4 Exploring Graphic Elements and Images.
PowerPoint 2007 Can you do?. Can you..... Lesson2 Add a text box and some text Change the font of a shape Add a picture from the internet Make a picture.
Applying the IEEE Template to a Presentation
Making Websites with Dreamweaver BTT. What is Dreamweaver?  “What You See Is What You Get” (WYSIWYG) web design software  Rather than writing code and.
A BCDE.
Saving PowerPoint Presentations as Web Pages Your Logo Here Open the PowerPoint Presentation. To convert to a format compatible with web browsers, launch.
HTML(Hyper Text Markup Language) ByNaveen. Introduction HTML or Hyper Text Markup Language is the standard markup language Its used to create the web.
Photoshop Image Slicing. Reasons to Image Slide To create links out of sliced images To optimise different areas. (flat areas of colour, such as logos,
Week 2- Overview of the internet The construction of a webpage Four Key Elements – how the internet works Elements and Design concepts Introduction to.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade HTML 5th Grade Syntax 4th Grade HTML 4th Grade Syntax 3rd Grade HTML 3rd Grade Syntax 2nd Grade.
MSOffice PowerPoint 1 Part 2 ® Microsoft® Office 2010: Illustrated Introductory.
INF1070 PowerPoint Presentation. Research a topic Find a topic that is of interest to you Minimum 10 slides of information are required (Excludes Biography.
Web Tools Assignment This assignment requires you to build a simple HTML page with an HTML editor of your choice and use an image or drawing tool to create.
Computer Literacy for IC 3 Unit 2: Using Productivity Software Chapter 10: Enhancing a Presentation © 2010 Pearson Education, Inc. | Publishing as Prentice.
Writing Your Own Web Page: Using HTML and FrontPage Chapter 10.
PowerPoint 2012 Tips for Creating a Presentation.
WEB GRAPHICS EXPLORING COMPUTER SCIENCE - LESSON 3-4.
CS 200 – Intro to GIMP The GNU Image Manipulation Program.
CS 200 – Web Tech I Web Site Organization Links. Recall the Web Page Layout sidebar footer content masthead.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
Exploring Computer Science - Lesson 3-4
Creating and Linking Web Pages
Basic HTML Tutorial Amber Brady.
Exploring Computer Science - Lesson 3-4
Images in HTML PowerPoint How images are used in HTML
HTML GUIDE Press F5 and then
DW Tutorial 5 Sessions 5.1 & 5.2 REVIEW
Graphics Basics Ellen Eyth.
Exploring Computer Science - Lesson 3-4
COMPUTING FUNDAMENTALS
Enhancing a Document Part 1
Microsoft® Office 2010: Illustrated Introductory
Graphics and Animation
The Web Wizard’s Guide To DHTML and CSS
Enhancing a Document Part 1
2.02C Frame-by-Frame Computer Animation Using PowerPoint
PRESENTATION LAYOUTS This is a title slide
The structure and style of web pages
Task: Have a look at these websites:
Creating and Editing a Web Page
How To Make Pics Transparent
Images in HTML PowerPoint How images are used in HTML
Adding Text and links to your classes in PowerSchool
Presentation transcript:

CS 200 – Graphics in Web Pages Banners, Bullets, Backgrounds, and Images

Where are Graphics in Web Pages? Banners & Mastheads Links & Buttons Bullets Background Image ("wallpaper") Photos in main content Image Maps (click areas for links) Some Terminology about Graphics (see next few slides) Bit-mapped image Vector images Layers

Bit-Mapped Images Every dot is remembered – Also called "raster graphics" – Created by programs such as MSPaint – Good for photos – Lines get "the jaggies" when enlarged (downside) – GIMP uses bit-mapped images

Vector Graphics "Formulas" are remembered for each line, square, circle, etc. – Created by Word, PowerPoint, Flash Flash can create a mixture of bit-mapped and vector graphics – Good for diagrams, etc. – Can enlarge to any size without distortion

Overall goal: Graphics Many Places First task: Use the Supplied Graphics

HTML tag: If image is at another location (don't forget the If image is on your own computer

So … code for the masthead

Kompozer Can Assist Position the cursor and add an image

Set size Two ways: Attributes (older method) Styles (newer method)

Using an image for bullets Images as bullets are done with a style and "normal" and tags: ul { list-style-image: url("bullet999.png") ; } Diamonds Necklaces

Animate Gif Same as other graphics: (image changes)

Background on whole page This is a style for body tag: body {background-image: url("background999.jpg") ; }

Float To make an image float left or right (and allow words around it): <img src=" x x.jpg" style="float: right;" />

Construct the page Construct the sample page. Then, the rest of the lab is to construct your own graphics and substitute them for the "999" images.

Stopping a "float" The table sometimes appeared adjacent to the paragraph with the floated image. To force the table down (technically to stop the float), use: