Unit 5.3. Basic Tables

Formatting with HTML Tables

A convenient way to display information or data in a nicely aligned tabular format is to place it inside an HTML table. To do so, you must use the TABLE tag. The TABLE tag brackets your table. All other text or tags to be included in your table should be nested inside the TABLE tag.

Copy your Test.htm file and save it with a new name, Table.htm. Create a table inside your new Table.htm file with the following example code:

<HTML> 
<HEAD> 
<TITLE>This is your title: with a short 
description</TITLE> 
</HEAD> 
<BODY> 
<H1>The title of your web page should be placed here.</H1> 

<P><TABLE></TABLE></P> 

</BODY> 
</HTML> 

Since the table element is not a block element (like the P tag), but instead an ...

Get Oracle® Web Application Programming for PL/SQL® Developers now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.