Practical Viewer

Practical Programs

IT Practical Solution

1 Programs Found
1 Program 1
Aim (Write on the ruler page)
write an HTML program that creates a webpage titled "International Business Machines Corporation". The webpage should include the following elements: A marquee displaying the heading "International Business Machines Corporation (IBMC)". A paragraph with a brief description of IBM. A table with three columns: Product, Services, and Prices. The table should be centered on the page and include at least two rows of data. You can choose the products, services, and prices to include in the table. An image that links to another local HTML file named "clients.html". You have the freedom to use inline CSS to style the elements and the contents of the table.

Program (Start from new page after AIM)
<!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>

Output (Stick on blank page opposite to code)
Download Output