- Create a simple HTML page on any of the following topics: College Profile, Computer Manufacturer or Software Development Company.The page must consist of a scrolling marquee displaying an appropriate Message. The page must include a table with at least 5 rows and 3 columns having merged cells at least at 1 place. The page must also display an image, such that when the same is viewed through a browser and the mouse is placed (hovered) on the Image, an appropriate text message should be displayed. The image itself should also act as a hyper-link to another page. (15)
- Save the file and view the same using any HTML Browser off-line. Verify functioning of the hyper-links. (10)
- Obtain a hard copy of the HTML code only.
<!DOCTYPE html>
<html>
<head>
<title>International Business Machines Corporation</title>
</head>
<body>
<marquee><h3>International Business Machines Corporation (IBMC)</h3></marquee>
<p>How your business can get smarter. To know more about International Business Machines Corporation (IBM) products, services, and careers, you can refer to our table and visit the official website.</p>
<table border="2" cellpadding="20" cellspacing="2" align="center">
<tr>
<th>Product</th>
<th>Services</th>
<th>Prices</th>
</tr>
<tr>
<td rowspan="2">Cloud Computing</td>
<td>PC cloud</td>
<td>9000</td>
</tr>
<tr>
<td>Mobile cloud</td>
<td>1000</td>
</tr>
<tr>
<td>Security</td>
<td>Hardware</td>
<td>9000</td>
</tr>
<tr>
<td>Storage</td>
<td>File Storage</td>
<td>8000</td>
</tr>
</table>
<a href="C:\Users\Vinit\Desktop\clients.html"><img src="cloud.png" title="cloud Picture" width="250" height="150"></a>
</body>
</html>
<html>
<head><title> International Business Machines Corporation</title></head>
<body>
<H3> International Business Machines Corporation(IBMC)</H3>
<p> To know more about International Business Machines Corporation(IBM) product, services and career you can visit original website.
</p>
<a href="C:\Users\Vinit\Desktop\binary_soft.html">Visit First page</a>
</body>
</html>