Friday, 28 December 2012

How to create table in HTML

Nowadays, I am doing HTML in which I am learning to make tables. Here is the following example:

<html>
<head>
<title>Table1</title>
<head>
<body>
<table border="2" width="100%">
<tr>
<td colspan="4" align="center">Header</td>
</tr>
<tr>
<td>Home</td>
<td>About Us</td>
<td>Gallery</td>
<td>Contact Us</td>
</tr>
<tr>
<td colspan="4">
<table>
<td>Categories</td>
<td>
<table>
<tr><td><h1>Welcome to BTES</h1></td></tr>
<tr><td><p>bebo Technologies Pvt. Ltd., an ISO 9001:2008 compliant company, has now
 emerged into providing practical training on various software technologies under 
 the banner of bebo Technical Education Services (BTES).<br>

BTES focuses on strategic and practical approach in providing training to students
 and working professionals. Under the close guidance and supervision of our experienced
 professionals, you will be trained on various technical aspects to tackle industry challenges
 faced regularly in your professional life.<br>

Our courses cover everything necessary to build a strong professional
 foundation. Through our courses, which are developed by industry experts,
 we bring their learning and experience to you so that you excel in your professional life.
 This brings you at par with working professionals and thus, meet the industry expectations. 
 </p></td></tr>
 </table>
 </td>
 </table>
 </tr>
 <tr>
 <td colspan="4" align="center">Footer</td>
 </tr>
 </table>
 </body>
 </html>

No comments:

Post a Comment