Tables *Note: Nothing in Volcano!*

Similar documents
Chapter 4 Notes. Creating Tables in a Website

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal

Dreamweaver CS3 Concepts and Techniques

IMY 110 Theme 7 HTML Tables

INFS 2150 / 7150 Intro to Web Development / HTML Programming

Chapter 4 Creating Tables in a Web Site Using an External Style Sheet

Tutorial 5 Working with Tables and Columns. HTML and CSS 6 TH EDITION

Web Development & Design Foundations with HTML5

HTML Tags <A></A> <A HREF=" CNN </A> HREF

HyperText Markup Language/Tables

THE ASIAN SCHOOL. Class-10. ch8. A. Check the Right Answer (1*9)

Lecture 08. Tables in HTML. Mr. Mubashir Ali Lecturer (Dept. of Computer Science)

Chapter 7 Tables and Layout

Web Design and Application Development

Chapter 7 Tables and Layout

Output a HTML Table to file PDF use FPDF

Chapter 9 Table Basics Key Concepts. Copyright 2013 Terry Ann Morris, Ed.D

Introducing Web Tables

Tables & Lists. Organized Data. R. Scott Granneman. Jans Carton

SECTION C GRADE 12 EXAMINATION GUIDELINES

HTML & XHTML Tag Quick Reference

Easy Horizontal Rules and Extra Alignment

LESSON 3. Coding Tables Continued

Creating web pages Chapter 5. Structuring contents

Creating a Web Page with HTML

Chapter 0. HTML review

HTML Exercise 24 Tables

HTML What is HTML Hyper Text Markup Language is a computer based language used to create WebPages.

c122sep2214.notebook September 22, 2014

Exercise #2: your Profile

INFS 2150 Introduction to Web Development

Page Layout Using Tables

INFS 2150 Introduction to Web Development

Dreamweaver Tutorials Working with Tables

COMPUTER APPLICATIONS IN BUSINESS FYBMS SEM II

Create a table to neatly display information

Skill Area 323: Design and Develop Website. Multimedia and Web Design (MWD)

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS

COMS 359: Interactive Media

HTML Images - The <img> Tag and the Src Attribute

Shatin Tsung Tsin Secondary School S.3 Computer and Technology Web Page Design by HTML Introduction to HTML

Structure Bars. Tag Bar

Final Examination Semester 1 / Year 2012

CS Multimedia and Communications. Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3)

CSC 101: Lab #2 HTML and the WWW Manual and Report Lab Date: Tuesday, 2/2/2010 Report Due Date: Friday, 2/5/2010 3:00pm

The most important layout aspects that can be done with tables are:

By Ryan Stevenson. Guidebook #2 HTML

Intermediate HTML Using Dreamweaver

Chapter 2. List, Tables,Frame and Forms

Chapter 5. Introduction to XHTML: Part 2

Html basics Course Outline

WEB PAGE DESIGNING USING HTML

HTML Hints & Tips. HTML is short for HyperText Markup Language.

Indian Institute of Technology Kharagpur. HTML Part III. Prof. Indranil Sen Gupta Dept. of Computer Science & Engg. I.I.T.

Table-Based Web Pages

HTML Tables and Forms. Outline. Review. Review. Example Demo/ Walkthrough. CS 418/518 Web Programming Spring Tables to Display Data"

Final Exam Study Guide

Advanced HTML Scripting WebGUI Users Conference

CSC 121 Computers and Scientific Thinking

A HTML document has two sections 1) HEAD section and 2) BODY section A HTML file is saved with.html or.htm extension

Web Design and Development ACS Chapter 12. Using Tables 11/23/2017 1

How to create grids and tables in PDF. Written by Apitron Documentation Team

CSC 101: PreLab Reading for Lab #4 More HTML (some of this reading on Tables and Images are based on previous writings of Prof William Turkett)

OVERVIEW. How tables are structured. Table headers. Cell spanning (rows and columns) Table captions. Row and column groups

IT350 Web and Internet Programming. XHTML Tables and Forms (from Chapter 4 of the text 4 th edition Chapter 2 of the text 5 th edition)

COMP519: Web Programming Lecture 4: HTML (Part 3)

ICT IGCSE Practical Revision Presentation Web Authoring

LAB MANUAL SUBJECT: WEB TECHNOLOGY CLASS : T.E (COMPUTER) SEMESTER: VI

Tai-Jin Lee. Handout #5 11/01/2005. Navigation

USER GUIDE MADCAP FLARE Tables

Student Name: ANTHONY ODUORI SOLO. Student ID: UB3257SIT7960 SECOND PHASE SUBMISSION OF ASSIGNMENT INTERNET ATLANTIC INTERNATIONAL UNIVERSITY

Creating Tables in a Web Site Using an External Style Sheet

CITS1231 Web Technologies. HTML Tables and Page Design Issues

SliceAndDice Online Manual

Advanced Web Programming C2. Basic Web Technologies

Creating Forms. Starting the Page. another way of applying a template to a page.

How to Make a Homepage using

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML)

Since the earliest days of HTML,

Bixby Public Schools Course Essential Elements Grade: Desktop Publishing

SAMPLE PAPER I CLASS- X SUBJECT FOUNDATION OF IT. TIME : 3 HRS M.M - 90 NOTE: 1. All questions are compulsory. 2. Write neat and clean.


1. Please, please, please look at the style sheets job aid that I sent to you some time ago in conjunction with this document.

NCR Customer Connect Working with Templates: ADVANCED

Advanced HTML 5.1 INTRODUCTION 5.2 OBJECTIVES

WTAD Text Editors for HTML. Text Editors: Kate HTML. (HyperText Markup Language)

Web Publishing Basics II

JB Academy, Faizabad Summative Assessment II Class X Time: 3:00 Hrs. Foundation Of IT MM-90

Dreamweaver MX Overview. Maintaining a Web Site

What is the Box Model?

WTAD. Unit -1 Introduction to HTML (HyperText Markup Language)

Calendar Project. Project Brief. Part I: A Date to Remember. Assignments are evaluated for understanding

Working with HTML. must appear at the very beginning of your webpage. starts the first section of your page

Center for Faculty Development and Support Making Documents Accessible

Namma Kalvi.

Intro to html. --- define every element, attribute, and entity along with the rules for their use

Summary 4/5. (contains info about the html)

A Balanced Introduction to Computer Science, 3/E

Mathematics. Computer Applications. New Jersey Quality Single Accountability Continuum (NJQSAC) Department: Course Title.

ITNP43: HTML Lecture 3

Transcription:

Tables *Note: Nothing in Volcano!* 016 1

Learning Objectives After this lesson you will be able to Design a web page table with rows and columns of text in a grid display Write the HTML for integrated layout schemes of text and pictures Write the HTML for an invisible table that creates side-by-side columns Create a table that has different colored cells Create a table that uses images as backgrounds in table cells 2

Tables Provide a structure for organizing other HTML elements into "grids" on the page HTML for tables can look very complex Keep in mind this concept Tables start being built From the top left Then across the columns of the first row Then to the second row Across the columns of the second row... --> --> --> --> --> --> --> --> --> --> 3

Basic Table Tags Are on Left Resulting Table in Right Column <table border=1> <tr> <td>row 1 col 1</td> <td>row 1 col 2</td> <td>row 1 col 3</td> </tr> <tr> <td>row 2 col 1</td> <td>row 2 col 2</td> <td>row 2 col 3</td> </tr> <tr> <td>row 3 col 1</td> <td>row 3 col 2</td> <td>row 3 col 3</td> </tr> </table> Row 1 col 1 Row 2 col 1 Row 3 col 1 Row 1 col 2 Row 2 col 2 Row 3 col 2 Row 1 col 3 Row 2 col 3 Row 3 col 3 4

Basic Table Tags Border=1 attribute instructs browser to draw a line around the table with a thickness of 1 pixel Each row is defined by Table Row tags <tr>...</tr> Cells in each row are defined by Table Data <td>...</td> tags Each <td>...</td> tag can contain any type of HTML tag 5

<td align=left> Horizontal Alignment Default setting Aligns all elements to left side of cell <td align=right> Aligns all elements to right side of cell <td align=center> Aligns all elements to center of cell 6

Vertical Alignment <td valign=middle> Default setting Aligns all elements to middle of cell <td valign=top> Aligns all elements to top of cell <td valign=bottom> Aligns all elements to bottom of cell 7

Combination Can combine these attributes: <td align=left valign=bottom> This HTML will produce a cell with items aligned along the left and bottom of the cell 8

Basic Table Tags Are on Left Resulting Table in Right Column <table border> <tr> <td>row 1 col 1</td> <td align=center colspan=2> Row 1 col 2-3</td> </tr> <tr> <td>row 2 col 1</td> <td>row 2 col 2</td> <td>row 2 col 3</td> </tr> <tr> <td>row 3 col 1</td> <td>row 3 col 2</td> <td>row 3 col 3</td> </tr> </table> Row 1 col 1 Row 2 col 1 Row 3 col 1 Row 1 col 2-3 Row 2 col 2 Row 3 col 2 Row 2 col 3 Row 3 col 3 9

Basic Table Tags Are on Left Resulting Table in Right Column <table border=1> <tr> <td>row 1 col 1</td> <td align=center colspan=2> Row 1 col 2-3</td> </tr> <tr> <td>row 2 col 1</td> <td valign=top rowspan=2> Row 2 col 2</td> <td>row 2 col 3</td> </tr> <tr> <td>row 3 col 1</td> <td>row 3 col 3</td> </tr> </table> Row 1 col 1 Row 2 col 1 Row 3 col 1 Row 1 col 2-3 Row 2 col 2 Row 2 col 3 Row 3 col 3 10

<th>...</th> Table Header Tags Function exactly like the <td>...</td> tags except that any text is automatically made bold and all items are automatically centered 11

Cell Padding <table border=x cellpadding=y cellspacing=z> Where X is the width (in pixels) of the outer border of the table Y value is the attribute cellpadding Specifies how much empty "space" exists between items in the cells and the walls of the cells High values for Y will make the cells larger ("padding the cell) Z value is the attribute cellspacing Specifies (in pixels) the width between the inner lines that divide the cells 12

<caption> tag Places a string of text (centered to the width of the table) as a title/caption for the table <table border=3 cellpadding=4 cellspacing=8> <caption><b><font size=+1> Volumes of Some Well-Known Volcanic Eruptions</font> </b></caption> Can include HTML tags inside the <caption> tag Just makes sure that it is within the <table>...</table> tags 13

Invisible or "Phantom" Tables To the reader it may not be obvious that they are looking at a table A phantom table is built in the same manner except the <table> tag looks like <table border=0> 14

Coloring Tables Table Table Part color the area behind the entire table Row color the area behind a single row Cell color the area behind a single cell HTML <table bgcolor=#880000> <tr bgcolor=#880000> <td bgcolor=#880000> 15

Border Color Add the bordercolor attribute to a <table> tag to shade the colors of a table with visible borders Modify the <table> tag to read <table border=8 cellpadding=8 cellspacing=2 bordercolor="#663300"> 16

Independent Practice: 2 Slides Open index.html and second.html Add one new table with new information to each page created by using the information in this lesson Create a minimum of two (2) tables for a 95 1 table on each page Tables previously created do not count Try creating a table with colored cells Or use the colors on an invisible table to color blocks of areas on a web page Or design what you want 17

Independent Practice: 2 Slides Staple the following items together in order by file name to turn in for grade Open index.html in Internet Explorer and print Open second.html in Internet Explorer and print Circle the minimum of two tables created in the pages Put your name & computer number AND Personal Web 15 on the assignment Turn all in for a grade 18