Gradients. What are Gradients? Gradients are graphics files that gradually blend from one shade of color to another. By using gradients as background.

Slides:



Advertisements
Similar presentations
Working with Graphics – Lesson 21 Working with Graphics Lesson 2.
Advertisements

Web Development & Design Foundations with XHTML Chapter 4 Key Concepts.
Introduction to CSS.
SM5312 week 11: CSS Menus & Navigation Bars1 An Introduction to Cascading Style Sheets CSS Menus and Navigation Bars Nick Foxall.
Tutorial 5 Working with the Box Model. XP Objectives Understand the box model Create padding, margins, and borders Wrap text around an image Float a block-level.
Chapter 8 Designing with Cascading Style Sheets. Chapter 8 Topics Building three different types of complete Web pages using CSS: Build a style sheet.
Chapter 5 Web Graphics Styling Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
HTML Line Breaks and HTML Horizontal Rules (Lines)
Computer Graphics Prepared by Dragon Lee 1 January 2003.
File Formats COM 366 Web Design & Layout. Native file format –Format native to software program –.psd > PhotoShop default Preserves layers –Use “Save.
PowerPoint 2007 © : The Power of Presentations How can Microsoft PowerPoint 2007 help you create professional-looking presentations?
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 4 Key Concepts 1 Copyright © Terry Felke-Morris.
INTERNAL CSS Casey Ames Different types of CSS There are three different types of CSS: ◦ External CSS ◦ Internal CSS ◦ Inline CSS In this presentation.
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.
Pixels, Resolution and File Types Using Digital Media in the Classroom START.
A Power Point Presentation For... A Power Point Presentation ( click to advance slides )
1 Background and Text Links CGS3066 Rory J. De Simone.
Day 4.  Assignment 1 Due  Assignment 2 Posted Assignment 2 Posted  Due Feb 9:35 AM  3 8:30 AM  Today we will look at creating and using.
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.
Web Development & Design Foundations with XHTML Chapter 4 Key Concepts.
Word Lesson 9 Enhancing Documents Microsoft Office 2010 Advanced Cable / Morrison 1.
CHAPTER 4 LINKS Creating links between pages Linking to other sites links.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 4 Key Concepts 1 Copyright © Terry Felke-Morris.
Basic Shapes and Colors Web Design Section 5-8 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I”
Adding Graphics to Web Pages. CSS does not have any properties specifically aimed at formatting images Use properties you have already learned, i.e.,
Creating a Logo – Lesson 3 1 Creating a Logo Lesson 3.
Cascade Style Sheet Introduction. What is CSS?  CSS stands for Cascading Style Sheets  Styles define how to display HTML elements  Styles were added.
Adobe Dreamweaver CS3 Revealed CHAPTER THREE: WORKING WITH TEXT AND IMAGES.
Working with Graphics – Lesson 21 Working with Graphics Lesson 2.
INTRODUCTORY Tutorial 4 Exploring Graphic Elements and Images.
ATTRIBUTES, LISTS, AND TABLES. Chapter 4 Objectives Extensions Strict vs. transitional XHTML Tag options Structure lists Table data.
Graphic Format Factors
COS 125 Day 4. Agenda Assignment 1 Due Assignment 2 Posted –Due Feb 9:35 AM Today we will look at creating and using images Examples –
Adding Images. XHTML Element ElementAttributeAttribute Value Closing tag AttributeAttribute Value The src attribute supplies the name and location of.
DIV, Span, CSS.
Project 6: Kayaking HTML5 Site
Adobe Dreamweaver CC: The Professional Portfolio Project 3: Photographer’s Web Site Working with static images Controlling backgrounds with CSS Working.
D.I.Y. Fun with Power Point. You can use Power point for much more than just presentations Once you know a few basic tricks, you can use Power Point for.
© 2001 – All Rights Reserved – Page 1 Web Graphics & Animating Web Graphics.
Dawn Pedersen Art Institute. What Are CSS Sprites? Back in the day, sprites were the images in games that swapped one little image for another in a specific.
تقنيات الإنترنت وبرمجة الويب “ العملي “ أ. غادة الرواشدة 1 CSS Cascading Style Sheets.
A CSS file consists of rule sets. H1 { color: navy; } selector property value Within the brackets are one or more rules /*This rule adjust the styles.
Web Page Design Mrs. Ricke. Graphics Interchange Format 256 colors only Good for icons, clipart, logos Not good for high quality pictures.
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.
Slide 1 Graphics (Characteristics 1) Images have various characteristics that affect performance Size (number of pixels) – Large images can be several.
What to Style? Styles for elements establish consistency –Styles for HTML or body become the default –Only create styles for pre-defined elements* Styles.
© 2001 – All Rights Reserved – Page 1 Web Graphic Elements Web Graphic Elements.
WEB DESIGN PRINCIPLES Dale Blasingame School of Journalism & Mass Communication Texas State University.
1 ITEC 4830 Graphics Design Chapter 1 Dreamweaver MX 2004 Basics.
Creating Visual Effects
Web Development & Design Foundations with HTML5 8th Edition
Applying CSS to Tables Stylish Tables.
Web Graphics 101 Web Image File Formats Image Optimization
Nesting and Floating Elements
1.01 Investigate graphic types and file formats.
Web Design M. Jacie Yang Assistant Professor
Chapter 3 Image Files © 2017 Cengage Learning®. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in whole or in part.
Introduction to CSS.
Embedded with tags..
Graphics (Characteristics 1)
A Power Point Presentation
Graphic Editing Terms Cropping
Tutorial 3 Working with Cascading Style Sheets
Step-by-Step Banner Creation Guide
CIS 205—Web Site Design and Development
Gradients.
Gradients.
Gradients.
Gradients.
Presentation transcript:

Gradients

What are Gradients? Gradients are graphics files that gradually blend from one shade of color to another. By using gradients as background images, we can make our web pages look more modern and stylish. There is no need to use a large image when building a gradient effect on our page. We take advantage of the background-repeat property in CSS.

How Gradients Work: By repeating the graphic horizontally, we can fill a much larger area with the gradient effect. 200 pixels high 10 pixels wide To make web pages load faster, most web designers make their gradients just 1 pixel wide.

Gradient Example:.header { width:800px; height:200px; background-image:url('gradient.jpg'); background-repeat:repeat-x; } h1 { text-align:center; color:white; } Gradient Example Gradient Example We can use horizontal gradients to style our pages also. Many XHTML elements can use gradients as their background images:,,,,, etc.

Creating Gradients: Gradient files are created using graphics applications such as Adobe Photoshop. They can also be created at no cost by using online resources, such as tools.dynamicdrive.com/gradient/ : Choose which type of gradient. Choose dimensions of gradient. Set the start and end colors. Choose a file format. See a preview of the gradient.