+ All Categories
Home > Education > Tables adding columns to them and information about the rows

Tables adding columns to them and information about the rows

Date post: 11-Jan-2015
Category:
Upload: kalluri-vinay-reddy
View: 77 times
Download: 0 times
Share this document with a friend
Description:
this ppt provides information about how to create tables,adding rows to the table,single column ,double column.which is the most basic to create the HTML file.
12
WEB DEVELOPMENT BASICS BY KALLURI VINAY REDDY 12MSE1013 VIT CHENNAI
Transcript
Page 1: Tables adding columns to them and information about the rows

WEB DEVELOPMENT BASICS

BY

KALLURI VINAY REDDY

12MSE1013

VIT CHENNAI

Page 2: Tables adding columns to them and information about the rows

HTML AND CSS

LECTURE 6

Page 3: Tables adding columns to them and information about the rows

TOPICS

TablesRows of information adding column adding two columns

Page 4: Tables adding columns to them and information about the rows

TILL NOW

Our HTML journey has been progressing very nicely. We've covered:

how to set up the skeleton of an HTML file

headings, paragraphs, images and links

font colours, sizes, and types

background colours, aligning text,bolding and italic izing font

Page 5: Tables adding columns to them and information about the rows

WHAT NOW?

In this course, we'll cover some important structural aspects of HTML:

<table>’s, <div>’s and <span>s!

Page 6: Tables adding columns to them and information about the rows

WHAT ARE TABLES?

• Tables are very useful. We use them to store tabular data so it is easy to read! When you want to present information

neatly in a table with rows and columns.

<table>

Page 7: Tables adding columns to them and information about the rows

SAMPLE CODE FOR TABLES

<html>

<head>

<title>Table Time</title>

</head>

<body>

<table>

</table>

</body>

</html>

Page 8: Tables adding columns to them and information about the rows

ROWS OF INFORMATION

• A table is a bunch of information arranged in rows and columns.

• We use the <tr> tag to create a table row

• Important note:

• You don’t really create columns in <table>s: instead ,you tell each row how many cells to have , and determines your number as columns

Page 9: Tables adding columns to them and information about the rows

A SINGLE COLUMN SAMPLE CODE<html>

<head>

<title>Table Time</title>

</head>

<body>

<table border="10px">

<tr>

<td>second</td>

</tr>

<td>two</td>

<tr>

<td>three</td>

</tr>

<tr>

</tr>

</table>

</body></html>

Page 10: Tables adding columns to them and information about the rows

ADDING A SECOND COLUMN

.

<html>

<head>

<title>Table Time</title>

</head>

<body>

<table border="1px">

<tr>

<td>King Kong</td>

<td>1933</td>

</tr >

</table>

</body></html>

Adding a second table data cell has the effect of adding a second table column

Page 11: Tables adding columns to them and information about the rows

REFERENCES

• www.codecademy.com

Head first web design .

Learning web design-Jennifer Niederst Robbins

www.w3schools.com

Page 12: Tables adding columns to them and information about the rows

Thank youAny doubts

Email: [email protected]


Recommended