Practical Viewer

Practical Programs

IT Practical Solution

2 Programs Found
1 Program 1
Aim (Write on the ruler page)
a) create simple HTML pages on any of the following topics. college profile, Computer Manufacturer, or software development company. The page must of at least 3 paragraphs of text. The page must have an appropriate title, background color, or background image and hyperlinks to other pages the paragraphs must have text consisting of different colors and styles in terms of alignment and font size. save the file and view the same using any HTML browser. verify the functioning of the hyperlinks.

Program (Start from new page after AIM)
<!DOCTYPE html>
<html>
<head>
    <h1 align="center">Binary Solutions</h1>
</head>
<body bgcolor="skyblue">
    <p font size="5" color="5">
        <b>Binary Solutions</b> is a software development company. It focuses on website development. It provides software solutions using web and dot net technology. Its head office is located in Pune. The company has offices all over India and USA.
    </p>
    <p style="font-size: large; color: green;">
        <i>
            It is a company that provides a creative atmosphere for employees. It also offers different facilities to its employees. Employees can work and develop their own ideas, thus converting their virtual ideas into reality.
        </i>
    </p>
    <b>further you can contact at the following address:</b>
    <pre>
        Binary Solutions,
        25, Anand Society,
        Sinhagad Road,
        Pune.
        Phone: 9561161736
        Email: binary_s@rediffmail.com
    </pre>
    <a href="C:\Users\Vinit\Desktop\clients.html" align="left">
        <h2>CLIENTS</h2>
    </a>
</body>
</html>

Output (Stick on blank page opposite to code)
Download Output
2 Program 2
Aim (Write on the ruler page)
Clients.html file

Program (Start from new page after AIM)
<!DOCTYPE html>
<html>
<head>
    <h1 align="center">BINARY SOLUTION</h1>
</head>
<body bgcolor="skyblue">
    <h1>Clients</h1>
    <ol>
        <li>Borgaon Sugar Factory</li>
        <li>Indo Instruments</li>
        <li>Nehru English School</li>
        <li>ABC Publications</li>
        <li>Indian Insurance Company</li>
        <li>Toyota Limited</li>
    </ol>
</body>
</html>

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