Page 110 - Computer Class 08
P. 110
<td>Sec</td>
</tr>
<tr>
<td>Address</td>
<td>Mob</td>
</tr>
</table>
</body>
</html>
The web page will appear like this.
Creating Newspaper Style Columns
You can use the table format to present text in multiple columns on your web page, much
like a newspaper. You may organize your text into two or three columns. You can use the
vertical alignment attribute to make each column align at the top of the table.
!DOCTYPE html>
<html>
<head>
<title>News-Paper Style Column</title>
</head>
<body>
<h1><CENTER><COMPUTER SYSTEM</CENTER></h1>
<CENTER><IMG SRC=“computer.jpg”></CENTER>
<TABLE BORDER=5 CELLPADDING=“10”>
<tr>
<td VALIGN=“top” WIDTH=“300”>
A computer is an electronic machine that works under the instructions given by you. It can
accept data (input), manipulate the data according to specified rules (process), produce
results (output), and store the results for future use.
</td>
<td VALIGN=“top” WIDTH=“300”>
Today, in the age of electronic revolution the computer has become an integral part of our
life. We can say that computers have entered into each and every walk of life either at home,
Computer-8 110