0% found this document useful (0 votes)
3 views5 pages

HTML Table Creation Guide

The document provides an overview of HTML table tags and instructions for constructing a table on a web page. It includes a sample HTML code that creates a table with headings for name, gender, age, state, and amount paid, along with a sample data row. The table is styled with a cyan background and specified dimensions.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views5 pages

HTML Table Creation Guide

The document provides an overview of HTML table tags and instructions for constructing a table on a web page. It includes a sample HTML code that creates a table with headings for name, gender, age, state, and amount paid, along with a sample data row. The table is styled with a cyan background and specified dimensions.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd

HTML TABLE

MR. EZEKIEL
OBJECTIVES

• UNDERSTANDING THE HTML TABLE TAGS


• CONSTRUCTING A TABLE ON A WEB PAGE
Name Gender Age State Amount Paid
• <!DOCTYPE HTML>
• <HTML>
• <HEAD>
• <TITLE>
• HTML TABLE
• </TITLE>
• </HEAD>
• <BODY>
• <P>WE ARE CREATING A TABLE</P>
• <TABLE BGCOLOR = "CYAN "BORDER =2 WIDTH = 50%>
• <TR>
• <TH>NAME</TH>
• <TH>GENDER</TH>
• <TH>AGE</TH>
• <TH>STATE</TH>
• <TH>AMOUNT PAID</TH>
• </TR>
• <TR ALIGN = "CENTER">
• <TD>JANET JACKSON</TD>
• <TD>FEMALE</TD>
• <TD>50</TD>
• <TD>JAPAN</TD>
• <TD>$50000</TD>
• </TR>
</TABLE>
• </BODY>

• </HTML>

You might also like