HTML Lesson 7. Your assignment:



Similar documents
In this chapter, you will learn how to...

Lecture 9 HTML Lists & Tables (Web Development Lecture 3)

New Perspectives on Creating Web Pages with HTML. Considerations for Text and Graphical Tables. A Graphical Table. Using Fixed-Width Fonts

Web page design in 7 days!

Learnem.com. Web Development Course Series. Learn em. HTML Web Design in 7 days! By: Siamak Sarmady

Coding HTML Tips, Tricks and Best Practices

The Essential Guide to HTML Design

Joomla Article Advanced Topics: Table Layouts

HTML Tables. IT 3203 Introduction to Web Development

LaGuardia Community College Thomson Ave, Long Island City, New York Created by ISMD s Dept. Training Team. Overview

Caldes CM12: Content Management Software Introduction v1.9

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Chapter 1: Outlook Isn t Going Anywhere Chapter 2: 17 Must-Know Tricks for Outlook 2007, 2010 &

This document will describe how you can create your own, fully responsive. drag and drop template to use in the creator.

Web Developer Jr - Newbie Course

Introduction Designing your Common Template Designing your Shop Top Page Product Page Design Featured Products...

CHAPTER 10. When you complete this chapter, you will be able to:

Create a Web Page with Dreamweaver

Garfield Public Schools Fine & Practical Arts Curriculum Web Design

Introduction to XHTML. 2010, Robert K. Moniot 1

FOUNDATION OF INFORMATION TECHNOLOGY Class-X (TERM II)

ADOBE DREAMWEAVER CS3 TUTORIAL

Creating Web Pages with HTML Simplified. 3rd Edition

Introduction to Web Design Curriculum Sample

Working with the new enudge responsive styles

Tutorial 5. Working with Web Tables

Microsoft FrontPage 2003

Intro to Web Design. ACM UIUC

<?xml version= 1.0?> <!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN

Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University

Contents. Downloading the Data Files Centering Page Elements... 6

IE Class Web Design Curriculum

To change title of module, click on settings

Atable is an orderly arrangement of data distributed across a grid of rows and

CS412 Interactive Lab Creating a Simple Web Form

HTML Fails: What No One Tells You About HTML

Creative Guidelines for s

core HyperText Markup Language (HTML) Designing Documents for the World Wide Web

ANDROID TRAINING COURSE MODULES. Module-I: Introduction to Android. Introducing Android. Installing Development Tools. Using the Emulator.

BlueHornet Whitepaper

ANATOMY OF A WEB PAGE...

QUESTION BANK COMPUTER SCIENCE. Class VIII LESSON-1 INTRODUCTION TO MS ACCESS

How to make a line graph using Excel 2007

Adobe Dreamweaver CC 14 Tutorial

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

The Essential Guide to HTML Design

We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file.

GUIDE TO CODE KILLER RESPONSIVE S

Creating HTML authored webpages using a text editor

Creating Web Pages With Dreamweaver MX 2004

8 STEPS TO CODE KILLER RESPONSIVE S

Introduction to Drupal

Base template development guide

How to Properly Compose HTML Code : 1

About webpage creation

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

As in the example above, a Budget created on the computer typically has:

Microsoft Expression Web Quickstart Guide

Tutorial Microsoft Office Excel 2003

WYSIWYG Editor in Detail

Cut-to-the-Chase Series Web Foundations. HTML Assignment. By Eric Matthews Visit us at:

Campaign Guidelines and Best Practices

Designing HTML s for Use in the Advanced Editor

How To Design An In Html (Html) And Html (Mailbox) Safely

<a href="document URL"... attributes-list>link Text</a>

(E) FOUNDATION OF INFORMATION TECHNOLOGY

Dreamweaver and Fireworks MX Integration Brian Hogan

Using Microsoft Word. Working With Objects

Lesson Review Answers

Web Design I. Spring 2009 Kevin Cole Gallaudet University

Site Maintenance. Table of Contents

Website Editor User Guide

FACULTY OF COMMERCE, OSMANIA UNIVERSITY

Help on Icons and Drop-down Options in Document Editor

Using Adobe Dreamweaver CS4 (10.0)

Catalog Creator by On-site Custom Software

Basic tutorial for Dreamweaver CS5

Understanding Start-Up Costs

Quick Reference Guide

PE Content and Methods Create a Website Portfolio using MS Word

How to create pop-up menus

Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade. Exercise: Creating two types of Story Layouts

DocuSign System Default Formats

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. Web Design in Nvu Workbook 1

Your Guide to the All New, Drag & Drop, Mobile-Responsive Builder

HTML & XHTML Tag Quick Reference

Creating a Gradebook in Excel

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc mraymond@luminys.com

Stylesheet or in-line CSS CSS attributes, used in stylesheets or in-line, can define:

Transcription:

HTML Lesson 7 Tables are one of the biggest tools Web developers use to present data wherever they want data to go on the page. Like spreadsheets, rows go across (left to right) and columns go up and down. Each box is called a. You can put all kinds of data inside a (text images, movies, etc.) Your assignment: Part 1: Use the attached tutorial to make a NEW Web page that has eight different tables. But don t freak out: the source code for each table is given to you! The important thing for you to do is to figure out what each html tag does and how that tag changes the table. That will become obvious to you as you go along. Separate each table by using the tag. Part 2: On the bottom of your page, make one table that: 1. has three columns and four rows. Inside each table just put a name of a friend, pet, teacher or family member. 2. make one table with one row and two columns. Inside each column put a small picture inside. The source code for inserting an image inside a table would include: <td><img src= monster.jpg </td>

Table The table tag looks like this: <table>. All of your table information goes between these two tags to make up a table. All tables start with the <table> tag and end with the tag. Table row An individual row that contains at least one data. On this page I've used two data s. The tag looks like this:. Table data An individual in a table row. The tag looks like this: <td></td>. The table, table row, and table data tags always nest like this: <table><td></td> Here is an example of a table with rows and s: <--This is a row Border Adding this to your table tag lets you specify whether or not your table has borders. The table I've used for my page has no borders. Bgcolor You can add this tag to change the background color of your table, row, or table s. You can make each row a different color, even the different s can be different colors. Align This tag helps you align your text in the table, row or. If you don't add it, your image or text will be aligned to the left (it's the default). You can specify center or left to change the alignment. Valign This tag aligns your table vertically. If you don't change it to "top" or "bottom" your information in your table will be aligned vertically in the center. Cellpadding This sets the margins inside of your table s on all four sides of your. Cellspacing This sets the spacing between your table s. Rowspan Adding this creates a column that spans your rows vertically, it can span all or some of your rows. row 1 row 1 row 1 rows row 2 1-3 rows row 2 row 3 2-3 row 3 Colspan The colspan tag makes the data stretch over two or more columns. Lissa Explains it All 1 2 3 4 5 6 7 8 Put These Tables in a New Web Page: How do I make a basic table? Here are some examples of simple tables. Different browsers don't show tables the same way, even if you use the same codes. <table border="1">

<td>cell 1</td> <table border="1"> <td>cell 1</td> <td>cell 3</td> <td>cell 4</td> How do I add a border to my tables? <table border="8"> <td>cell 1</td> <td>cell 3</td> <td>cell 4</td> How do I add color to my tables? <table border="8"> <td bgcolor="#00ccff">cell 1</td> <td bgcolor="#cc00ff">cell 2</td> <td bgcolor="#00ff00">cell 3</td> <td bgcolor="#ffff00">cell 4</td> How do I get rid of my border? Just add the tag border="0" to your table tag: <table border="0" spacing="0"> <td bgcolor="#00ccff">cell 1</td> <td bgcolor="#cc00ff">cell 2</td>

<td bgcolor="#00ff00">cell 3</td> <td bgcolor="#ffff00">cell 4</td> row 1 row 1 row 1 rows row 2 row 2 1-3 rows row 3 2-3 row 3 <table border="0" spacing="0"> <td bgcolor="#00ccff">row 1</td> <td bgcolor="#ffff00" rowspan=3>rows 1-3</td> <td bgcolor="#cc00ff">row 1</td> <td bgcolor="#00ff00">row 1</td> <td bgcolor="#00ff00">row 2</TD><td bgcolor="#00ff00" rowspan=2>rows 2-3</td> <td bgcolor="#00ccff">row 2</td> <td bgcolor="#ff33cc">row 3</td> <td bgcolor="#ff33cc">row 3</td> Lissa Explains it All 1 2 3 4 5 6 7 8 <table border="0" spacing="0" padding="5"> <td bgcolor="#ffff00" colspan=4>lissa Explains it All</td> <td bgcolor="#00ccff"> 1</td> <td bgcolor="#cc00ff"> 2</td> <td bgcolor="#ff33cc"> 3</td> <td bgcolor="#00ff00"> 4</td> <td bgcolor="#ff33cc"> 5</td> <td bgcolor="#00ff00"> 6</td> <td bgcolor="#00ccff"> 7</td> <td bgcolor="#cc00ff"> 8</td> How do I set widths for my table? Just add the width tag with specific widths to your table tag. You can also specify percentages in the tag, for instance <width=30%>. Just make sure the widths and percentages add up to 100%.

Cell 1 Cell 2 <table border="0" padding="5" spacing="10" width="200"> <td bgcolor="#00ff00" width="50" >Cell 1</td> <td bgcolor="#ffff00" width="150" >Cell 2</td>