Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Images  Colors.

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

HTML popo.
1 تقنيات الانترنت عال457 HTML. 2 HTML  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web. HTML is a text formatting.
End User Computing An Introduction to CSS Sujana Jyothi Research Lab1, Callan Building, Department of Computer Science
Design, Formatting, CSS, & Colors 27 February, 2011.
Review of HTML (adapted from Guthrie, , last updated January, 2007)
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.
1 Introduction to HTML. 2  W W W – World Wide Web.  HTML – HyperText Markup Language – The Language  of Web Pages on the World Wide Web. HTML is a.
Why HTML. View Code This is my home page. My name is Ali. I’m studying Educational Technology. Save as Text.
Primaries: magenta, yellow, and cyan This color system is called subtractive because: each primary color absorbs (subtracts) a certain part of the color.
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,
Web Design Unit Assignment #2: Job Skills Favorite Links Page You will create a HTML web page with links to informational websites about a variety of job.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
Learning HTML. HTML Attributes HTML elements can have attributes Attributes provide additional information about an element Class – specifies a class.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
1 Essential HTML coding By Fadi Safieddine (Week 2)
Content To Date Review Course Work/Labs Assigned to Date Review HTML Image Tag Editing code for image folder Introduce HTML Color Tags Webpage Safe Colors.
Kevin Murphy Web Color Basics Masters Project CS 490.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
Introduction To CSS.. HTML Review What is HTML used for? Give some examples of formatting tags in HTML? HTML is the most widely used language on the Web.
Diana Cedillo EDTC 6343_61 Fall THE MASTER TECHNOLOGY TEACHER KNOWS AND APPLIES BASIC STRATEGIES AND TECHNIQUES RELATED TO WEBSITE MASTERING. B.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
What are the five colors in the legend? Enter the information below (5 points) 0000FF = = FFFFFF = 00FF00 = FF0000 = Color Theory Legend: income.
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.
 Komodo Edit Project › Helping you find your folder  Laptop › Delete what you don’t need › Keep class “doodles” in a single “sandbox” folder  Isis.
HTML Basic IST2101. Keep In Mind Programming can be time consuming. Plan ahead!
HTML Lesson 3 Hyper Text Markup Language. Assignment Part 2  Set the file name as “FirstName2.htm”  Set the title as “FirstName LastName First Web Site”
Georgia Institute of Technology Making Text for the Web Barb Ericson Georgia Institute of Technology March 2006.
Internet Applications Development Lecture 4 L. Obead Alhadreti.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
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.
AGB 3/26/121 ++=. 2 Yes, believe it or not this is a complete webpage. It has a Head, Title and Body between the start and end HTML Tag.
HTML IMAGES. CONTENTS IMG Tag Alt Attribute Setting Width and Height Of An Image Summary Exercise.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
HTML BASIC IST 210: Organization of Data IST210 1.
Intro to Color Theory. Objectives Identify and discuss various color models including RGB, CMYK, Black/white and spot color. Investigate color mixing.
Spiderman ©Marvel Comics Creating Web Pages (part 1)
HSB to RGB to HEX.
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.
Writing Web Pages in HTML HTML.1 The Web  Lots of computers connected together in a collection of networks  HyperText Markup Language (HTML) is a common.
CompSci Today’s topics Basic HTML  The basis for web pages  “Almost” programming Upcoming  Programming  Java Reading Great Ideas Chapters 1,
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Images  Colors.
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
Why HTML. This is my home page. My name is Ali. I’m studying Technology Education.
1 Introduction to HTML. 2 Definitions  W W W – World Wide Web.  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web.
HTML Basic IST 210: Organization of Data IST2101.
Introduction To CSS. Lesson 1: History of CSS CSS was proposed in 1994 as a web styling language. To helps solve some of the problems HTML 4. There were.
HTML Basics.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Web Development & Design Foundations with HTML5 8th Edition
Hyper text markup Language
Design Concepts: Module A: The Science of Color
Introduction to HTML.
From now on you are the Creator,
Web Development & Design Foundations with HTML5
HTML Images CS 1150 Spring 2017.
Programming for webpages
Colors.
Introduction to HTML II
Hyper text markup Language
Basic HTML and Embed Codes
HTML (Hypertext Markup Language )
HTML Images.
Programming for webpages
HTML Images CS 1150 Fall 2016.
Web Colors.
Presentation transcript:

Basic HTML Hyper text markup Language

Lesson Overview  In this lesson, you will learn to:  Images  Colors

Image extensions There are multiple formats of images. Each format has a different file extension. You can use them as src (source) for tag  Image.gif  Image.jpeg  Image.png  Image.bmp  Image.tiff

Images  - (image) is the element used to embed images  - src (source)is an attribute of which provides path to the image being embedded. It embeds an image file “smiley.gif” from the same directory as the html file.

Images  Embeds an image file “newpic.gif” from directory c:\webdesign  Embeds an image file “anotherpic.gif” from the directory \\server\webdesign

Images  Width and height attributes of decides dimensions of embedded image. Only use one of these so the image doesn’t stretch.  The alt attribute provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an error in the src attribute).

Assignment - Images  Find 2 images for your assignment 1e.g  Save them to the SAME FOLDER as assignment1  Add 2 image tags to your assignment 1page to verify the results. Attributes:  src: Use the complete file name (pic.jpg)  width or height (but not both)  alt

Where can I get images for my website

Sources of images  Pictures taken by you using your digital camera  Pictures taken by someone else  Pictures created by you using software like photoshop  Pictures created by someone else using software like photoshop

Copyright of images  If you are using someone else’s picture Please attribute picture to original contributor  Please make sure that you have read and understood copyright license  Wikimedia commons – free license. you can use images from there (give attribute to original contributor)

How to attribute pictures  Please put the title of the picture (if available)  name of the author/creator (if available)  E.g Thanks to Mary smith for this picture of a panda  E.g Picture courtesy of Mary Smith  E.g Picture by Mary Smith

What are primary COLORS

RED GREEN BLUE

RGB Mixing RED – GREEN – BLUE creates all other colors

Hex Mixing RED – 00-FF GREEN – 00 - FF BLUE- 00-FF creates all other colors

Adding color to your text…  I am Red  I am Blue

Color reference  asp asp  ames.asp ames.asp     picker.html picker.html  Another tip is to Google “html colors”

HEX COLORS Defined as… # #FFFFFF #FF0000

 I am Spring Green #00FF7F  I am blue Violet #8A2BE2

Hexadecimal numbers 0,1,2,3,4,5,6,7,8,9, 10(A),11(B),12(C), 13(D),14(E), 15(F)

RGB Colors are defined as rgb(0,0,0) rgb(255,255,255) rgb(0,255,0) rgb(255,0,0)

More Ways to mix: Cyan, Magenta, Yellow, Black CMYK cmyk(0, 100, 50, 0) Hue, Saturation, Light HSL Mixing hsl(120, 100%, 50%)

Setting font color  This is red  Blue  Green  ….

Assignment - Colors  Color the heading of your recipe.  Color the background of your recipe.