4.01 HTML, CSS and Color.

Slides:



Advertisements
Similar presentations
© 2004, Robert K. Moniot Binary and Hex How to count like a computer.
Advertisements

Cascading Style Sheets: Basics I450 Technology Seminar Copyright 2003, Matt Hottell.
HTML Tables, Lists, Blocks, Colors, Styles
End User Computing An Introduction to CSS Sujana Jyothi Research Lab1, Callan Building, Department of Computer Science
Web Colors. Web Colors Using CSS Thus far, we have set our text and background colors using actual color names, such as:.example { background-color: gray;
4.01 HTML, CSS and Color. Introduction This presentation includes the following topics: Additive color theory Color Names RGB Colors Hex Colors.
Skills: selecting colors, specifying colors in HTML Concepts: combining red, green and blue light to generate colors, combining light versus combining.
Design, Formatting, CSS, & Colors 27 February, 2011.
Lecture 5. CSS 2 What style will be used when there is more than one style specified for an HTML element? Generally speaking we can say that all the styles.
Design, Formatting, CSS, & Colors September 9, 2010.
RGB color model Skills: none IT concepts: combining red, green and blue light to generate colors This work is licensed under a Creative Commons Attribution-Noncommercial-
Contains 16,777,216 Colors. My Car is red My Car is red How do I add colors to my web page? Notepad Browser Works with the “Standard” colors: Red, Green,
Colour & Image in HTML Wah Yan College (Hong Kong) Mr. Li C.P.
© Maths Support Service 2007 Binary and Hexadecimal Numbers Next Slide AE98FD AE98FD.
Digital Colour Theory. What is colour theory? It is the theory behind colour mixing and colour combination.
Why HTML. View Code This is my home page. My name is Ali. I’m studying Educational Technology. Save as Text.
Link and Table in HTML. Statistics HTML review The two faces of a HTML file In a notepad program. In a internet browser program. The function of HTML.
Version 1.0, 30 June 2004 APPLICATIONS OF METEOSAT SECOND GENERATION (MSG) RGB IMAGES: PART 02 INTRODUCTION TO RGB COLOURS Author:Jochen Kerkmann (EUMETSAT)
CMYK vs. RGB Design. Primary colors The colors that make up the base for every other color created. Depending on whether you are looking at it from science,
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 3 Key Concepts 1 Copyright © Terry Felke-Morris.
HTML Colors Color is one of the most important ideas of the Principles of Design. It is used to separate and emphasis elements in a design. Insert a picture.
THE COLORS OF LIGHT RED, GREEN and BLUE
07: Color in Interactive Digital Media
Lesson 13 – Color and Typography. 2 Objectives Discuss basic color theory. Understand the color wheel. Understand how color is presented on a computer.
Chapter 12 Cascading Style Sheets: Part II The Web Warrior Guide to Web Design Technologies.
Colour Theory – Addition and Subtraction Theory
What are the five colors in the legend? Enter the information below (5 points) 0000FF = = FFFFFF = 00FF00 = FF0000 = Color Theory Legend: income.
Most of the attributes of the body element specify colors for the Web page. Note: The background attribute won’t be useful till we learn about graphics.
Number Systems CIT Network Math
Web Colors. Web Colors: Up until now, we have been using only pre- defined color names, such as "orange" and "lightblue". As web designers, we need the.
Web Design I Spring 2009 Kevin Cole Gallaudet University
Colors. Color of HTML Elements You can control the color of the following elements: You can control the color of the following elements: All text within.
Hexadecimal Codes 1. RGB Color Wheel 2 Before we begin Hexadecimal is a number system Based on using 0 – F to represent 0 – 15 Hex is used to represent.
Applying Color in CSS Web Design – Sec 4-5 Part or all of this lesson was adapted from the University of Washington’s “ Web Design & Development I ” Course.
Color Theory The art and science of color interaction and effects. SYSTEMS.
Color on Computers. Bits and Bytes Bit: a single piece of yes/no or 0/1 data Two bits can code 4 items (00, 01, 10, 11) Three bits = 8 (000, 001, 010,
TOPIC 4.3 SNC2P. Lesson Goals Today we will learn that: colours of light can be added together to form a variety of colours through two investigations.
# Red Green Blue Digital Color RGB to HEX.
XHTML Formatting font with a style declaration. Formatting Font HTML uses the font tag to change size and family of font But… the font tag is being deprecated.
12/20/20151 Color Fall, 2010 Modified by Linda Kenney 10/26/10.
Colors of Pigment The primary colors of pigment are magenta, cyan, and yellow. [
Announcements Chapter 8 for today. 2 More Digitization Light, Sound, Magic: Representing Multimedia Digitally © Lawrence Snyder, 2008.
Elements of Design 1.02 Investigate Design Principles and Elements.
Why HTML. This is my home page. My name is Ali. I’m studying Technology Education.
Color in Web Design. Overview: Color Topics Myths & Misconceptions Hexadecimal Notation Color Concepts and Issues.
HSB to RGB to HEX.
PART TWO Electronic Color & RGB values 1. Electronic Color Computer Monitors: Use light in 3 colors to create images on the screen Monitors use RED, GREEN,
 the relationship between colors  Primary Colors: colors that cant be made by mixing other colors (red, yellow, blue)  Secondary Colors: Colors made.
Why HTML. This is my home page. My name is Ali. I’m studying Technology Education.
WHY HEXADECIMAL?. Why bother with Hexadecimal? 1. Binary numbers are difficult for us to work with. 2. Hexadecimal can be used as “shorthand” for binary.
Web Colors.
Web Development & Design Foundations with HTML5 8th Edition
Design Concepts: Module A: The Science of Color
5th Grade colors Vocabulary
The Colour of Light: Additive colour theory.
4.01 HTML, CSS and Color.
By Brian MacMillan version all rights reserved.
Web Development & Design Foundations with HTML5
Web Colors.
Colour Theories.
Additive and Subtractive Color
Colour theory.
Instructions for creating a template in MS Frontpage
HTML Colour Codes (Hexadecimal)
What Color is it?.
Web Colors.
4.01 HTML, CSS and Color.
Color Theory.
Web Programming and Design
METEOSAT SECOND GENERATION (MSG) INTRODUCTION TO RGB COLOURS
Presentation transcript:

4.01 HTML, CSS and Color

Introduction This presentation includes the following topics: Additive color theory Color Names Rgb Colors Hex Colors

Additive Color Colors on your computer monitor are displayed by combining red, green, and blue light.   It's a process known as "additive color".  A computer works with light. Mix a computer's additive colors, red, green, and blue, together, you get white.

Additive color creating white Additive colors are generated by light

Subtractive color system In contrast, the subtractive color system is the mixing of colors. In subtractive, the colors mix to create black.

Color Value Examples in Hex and rgb

rgb color The combination of red, green, and blue values ranges from 0 to 255. That means there are 256 values for each color. 256 x 256 x 256 gives us more than 16 million colors that can be created using the RGB system.  Zero, "0", is the smallest representations of a color. 255 is the largest representation of a color

Hex color codes Hexadecimal uses the numbers 0 to 9 and the letters A to F to represent color values. In Hex the smallest representation of color is “00” and the largest representation of color is “FF”. Follow this link for more information: http://www.w3schools.com/html/html_colors .asp

Understand Hex Color Codes

Color Names There are currently 140 color names supported in HTML and CSS. You can view the list by following this link: http://www.w3schools.com/html/html_c olornames.asp

Hands-on color activity http://www.w3schools.com/tags/ref_colo rmixer.asp?colorbottom=000000&colort op=FFFFFF OR https://kuler.adobe.com/create/color- wheel/

CSS Colors should be defined using Cascading Style Sheets. { background-color:#6495ed; } p background-color:#e0ffff; div background-color:#b0c4de; </style>