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,

Slides:



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

1 تقنيات الانترنت عال457 HTML. 2 HTML  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web. HTML is a text formatting.
Most-to-Least Legible Color Combinations for Viewing on Slide Shows Color and contrast are very important tools in communication. They can be used to enhance.
4.01 HTML, CSS and Color. Introduction This presentation includes the following topics: Additive color theory Color Names RGB Colors Hex Colors.
© red ©
Workshop: CSS-Part I Cascading Style Sheets add style to your HTML web pages.
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-
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.
Why HTML. View Code This is my home page. My name is Ali. I’m studying Educational Technology. Save as Text.
Explanation of Web 6, Web 7 and Web 9 at my site Please be sure to bring up the speaker notes for the explanation Intro - Web 6, Web 7 and Web 9.
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.
1 Ethics of Computing MONT 113G, Spring 2012 Session 11 Graphics on the Web Limits of Computer Science.
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,
1 Perception, Illusion and VR HNRS 299, Spring 2008 Lecture 14 Introduction to Computer Graphics.
HTML ICT This game is strictly for fun. No money can be won.
More Basic HTML. Add spacing (single & double space) Save Refresh Add horizontal rule Add comments Add styles Add headings Add features Add alignments.
Kevin Murphy Web Color Basics Masters Project CS 490.
Unit 1 — HTML BASICS Lesson 2 — HTML Organization Techniques.
More Basic XHTML Module 2: XHTML Basics LESSON 2.
15.2 More Basic HTML. More Basic HTML Add spacing (single & double space) Save Refresh Add horizontal rule Add comments Add styles Add headings Add features.
What are the five colors in the legend? Enter the information below (5 points) 0000FF = = FFFFFF = 00FF00 = FF0000 = Color Theory Legend: income.
Review session for Web development. Time line of the internet history When was the ARPANET first demostrated? When did the NFSNet replace it? When did.
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.
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.
1 Ethics of Computing MONT 113G, Spring 2012 Session 10 HTML Tables Graphics on the Web.
Georgia Institute of Technology Making Text for the Web Barb Ericson Georgia Institute of Technology March 2006.
Homework Assignment You are going to research any artist of your choosing from any time period or genre. You are going to complete a one page double- spaced.
Computer Science 101 Color, Fonts, Links, Design.
# Red Green Blue Digital Color RGB to HEX.
HEXADECIMAL NUMBERS.
HTML & Color How to Use Color  Backgrounds-  Usually a light color is best  Should have a color based on a theme or plan  Can have a dark.
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.
GRAPHING RELATIONSHIPS For each graph, determine the graphing relationship and record it on a white board.
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,
Your HTML website creating your first html file. Creating an HTML FIle Open note pad from accessories, programs. Write code. Save and view. In 3 Steps.
ColorsColors. Color Keywords/Names 140 color keywords/names are defined in the HTML and CSS color specification –17 standard colors (HTML accepts 16 of.
Why HTML. This is my home page. My name is Ali. I’m studying Technology Education.
Unit 2.6 Data Representation Lesson 3 ‒ Images
Experiment #1 Measurement of Resistance
Basic HTML Tags Ryan Frazier April 30,2004 CSC113.
LESSON 2 Module 2: XHTML Basics More Basic XHTML.
4.01 HTML, CSS and Color.
Hexadecimal Sweet Sixteen!.
Chapter 13 Colors & backgrounds.
Design Concepts: Module A: The Science of Color
4.01 HTML, CSS and Color.
Web Development & Design Foundations with HTML5
Name: _______________________________
Hexadecimal Binary Made Easier.
Colours.
HTML (Hypertext Markup Language )
Two ways to discuss color 1) Addition 2) Subtraction
LESSON 2 Module 2: XHTML Basics More Basic XHTML.
Colors Computers build colors from Red, Green, and Blue; not Red, Blue, and Yellow. RGB = Red Green Blue Creating Colors Red + Blue = Purple No Red, No.
Lesson 2 HTML Organization Techniques.
What Color is it?.
Web Colors.
Lesson 2 — HTML Organization Techniques
4.01 HTML, CSS and Color.
Electronics Resistance Practice Problems R LabRat Scientific © 2018.
Presentation transcript:

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, Blue, White, Black,… Not Recommended method

How do I add colors to my web page? The “Code” Colors are shown using a 6 digit code The digits are separated into 3 groups of An example

How do I add colors to my web page? The “Code” Colors are shown using a 6 digits The digits are separated into 3 groups of An example Each group is a color: Red, Green, Blue Red Green Blue Known as RGB colors Higher the Number - The brighter the color !

How do I add colors to my web page? The “Code” An example Each group is a color: Red, Green, Blue R G B The digits are in Hexadecimal 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F

How do I add colors to my web page? The “Code” Examples R G B Black = No Colors = Red= Only Red= FF0000 White = All colors equal = FFFFFF Green= Only Green= 00FF00 Blue= Only Blue= 0000FF Yellow = FFFF00 = Red and Green w/ NO Blue

How do I add colors to my web page? The “Code” FF0000Red = “#FF0000”

My Car is red My Car is red How do I add colors to my web page? Notepad Browser