CS-1 || HTML || EXP-9

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.

b) Obtain a hardcopy of the HTML code only

<!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 devlopment. It provide software Solutions using web abd dot net technology. It's head office is at pune . The company have offices all over India and USA
        </p>
        
        <p style="font-size: large; color: green;">
            <i>
                It is company which provides creative atmosphere for employees.
                It also provides different faclities to their employess.
                employees can work and develop their own ideas. Thus they can convert their virtual ideas into reality
            </i>
        </p>

        <b>further you can contact at following address:</b>
        <pre>
        Binary Solutinos,
        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>

<!DOCTYPE html>
<html>
    <head>
        <h1 align="center">BINARY SOLUTION</h1>
    </head>
    <body bgcolor="skyblue">
        <h1>Clients</h1>
        <ol>
            <li>Borgaon Suagr Factory</li>
            <li>Indo Instruments</li>
            <li>Nehru English School</li>
            <li>ABC Publications</li>
            <li>Indian Insurance company</li>
            <li>Toyato Limited</li>
        </ol>
    </body>

</html>

OUTPUT-1

OUTPUT-2

Leave a Comment

Scroll to Top