Even More HTML Richard Fisher.

Slides:



Advertisements
Similar presentations
1 تقنيات الانترنت عال457 HTML. 2 HTML  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web. HTML is a text formatting.
Advertisements

Lesson 3 HTML Power Techniques. Font attributes: – Open font tag – Font style attribute =Arial value – Font size attribute=value of 8 – Font color attribute=orange.
Design, Formatting, CSS, & Colors September 9, 2010.
Introduction to HTML II Shih-Heng Chin. Preface Structure of a HTML File Elements used frequently Tables.
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,
HTML. Creating a Table Attributes: border: indicates the border type of the table Value: 0 (no border), 1, 2, etc. cols: indicates the number of columns.
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.
Susan Cates Posting HTML documents to the Web Library using Dreamweaver Bios 576/577.
Lesson 6. Links in HTML Computer Science Welcome to Virtual University in Pakistanhttp://
Pixels Minute University Richard Fisher 2/4/2002 Richard Fisher2 PixelsPixels  Picture Element  A single point in an electronic image  The.
Why HTML. View Code This is my home page. My name is Ali. I’m studying Educational Technology. Save as Text.
CS105 Introduction to Computer Concepts HTML
Creating Web Pages with Links, Images, and Formatted Text.
Learning HTML. HTML Attributes HTML elements can have attributes Attributes provide additional information about an element Class – specifies a class.
Kevin Murphy Web Color Basics Masters Project CS 490.
1.NET Web Forms HTML Introduction © 2002 by Jerry Post.
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.
Getting Started with HTML Please use speaker notes for additional information!
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.
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.
HTML B OOT C AMP Chapter 10 Tables Kirkwood Continuing Education © Copyright 2015, Fred McClurg All Rights Reserved.
CS105 INTRODUCTION TO COMPUTER CONCEPTS HTML Instructor: Cuong (Charlie) Pham.
Even More HTML Richard Fisher. 10/19/99 Richard Fisher2 Other HTML Topics  MAILTO:  COLORS  FONT  TABLES  SOUND.
Introduction to HTML. HTML Introduction HTML – Hypertext Markup Language are the instructions that tell a browser how to lay out the information (text,
TABLES 1. In this chapter you will learn that tables have many uses in HTML. Objectives: Upon completing this section, you should be able to: 1. Insert.
Pixels Minute University Richard Fisher 2/4/2002 Richard Fisher2 PixelsPixels  Picture Element  A single point in an electronic image  The.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
Announcements Chapter 8 for today. 2 More Digitization Light, Sound, Magic: Representing Multimedia Digitally © Lawrence Snyder, 2008.
Why HTML. This is my home page. My name is Ali. I’m studying Technology Education.
HSB to RGB to HEX.
ColorsColors. Color Keywords/Names 140 color keywords/names are defined in the HTML and CSS color specification –17 standard colors (HTML accepts 16 of.
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 R3 R1 R5 R4 R6 R2 B B A A Looking at the Code Under the View menu Select Source.
Introduction to Web Authoring Bill Hart-Davidson AIM: billhd30 Session 2
( Cascading style sheet )
Hyper text markup Language
Basic HTML.
Introduction to HTML.
Week 6 Creating Tables using HTML.
Introduction to HTML.
HTML <table> tag syntax: <table> </table>
CSCI-235 Micro-Computers in Science
4.01 HTML, CSS and Color.
Introduction to HTML.
H T M L A B E S X P I N D.
Lesson 7 Week 7 Course project defence Nov. 7, 2017
Creating Tables Steps for creating a Table Important Facts about Table
HTML/XML HTML Authoring.
Table CSS Create a new CSS called tablestyle.CSS Green Background
مقدمة عن الإنترنت وفهم لغة HTML
Creating Tables Steps for creating a Table Important Facts about Table
TABLES.
Web Design and Development
Hexadecimal Binary Made Easier.
Creating Tables in a Web Site
HTML (Hypertext Markup Language )
Two ways to discuss color 1) Addition 2) Subtraction
Basics of XHTML What Lies Beneath.
COMS 161 Introduction to Computing
What Color is it?.
Introduction to HTML.
H T M L A B E S X P I N D.
Basic HTML.
Web Colors.
Creating Tables Steps for creating a Table Important Facts about Table
H T M L A B E S X P I N D.
Presentation transcript:

Even More HTML Richard Fisher

Other HTML Topics MAILTO: COLORS FONT TABLES SOUND 10/19/99 Richard Fisher

MAILTO: <A HREF=“mailto:rfisher@utdallas.edu”> <IMG SRC=“mailbox.gif”> Richard Fisher</A> 10/19/99 Richard Fisher

Color=“rrggbb” where r=red, g=green, and b=blue intensity Colors Color=“rrggbb” where r=red, g=green, and b=blue intensity <BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#FF00FF" ALINK="#FF0000">

Decimal to Hex Conversion Windows Calculator (in Accessories Group) Excel’s DEC2HEX Function

Common Color Schemes RRGGBB Pattern Color 000000 Black 0000FF Blue 00FFFF Cyan 00FF00 Green FF0000 Red FF00FF Magenta FFFF00 Yellow FFFFFF White 10/19/99 Richard Fisher

<FONT SIZE=4> .... </FONT> FONT Size and Color <FONT SIZE=4> .... </FONT> (default=3, 7 is largest) <FONT SIZE=7 COLOR=#0000FF> I’m Big and Blue</FONT> 10/19/99 Richard Fisher

Tables Begin/End Table <table>...</table> Table Row <tr>...</tr> Table Data <td>...</td> Example: <table> <tr><td>Item 1</td><td>Item 2</td></tr> <tr><td>Item 3</td><td>Item 4</td></tr> </table> 10/19/99 Richard Fisher

Table for Buttons <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0> <TR> <TD ALIGN=CENTER> <A HREF="ba4320.htm"> <IMG BORDER=0 SRC="../images/butmain.gif" WIDTH=90 HEIGHT=30 ALT=Main Menu></A></TD> <TD ALIGN=CENTER> <A HREF="general.htm"> <IMG BORDER=0 SRC="../images/butgen.gif" WIDTH=90 HEIGHT=30 ALT= General Information > </A> </TD> </TR> </TABLE> 10/19/99 Richard Fisher

Table for Buttons Netscape Table Reference http://home.netscape.com/assist/net_sites/table_sample.html Method: Find table structure you like and copy and past code to HTML 10/19/99 Richard Fisher

HTML Reference http://werbach.com/barebones/ 10/19/99 Richard Fisher

The End Questions ? Richard Fisher rfisher@utdallas.edu 10/19/99