<!-- contactUs.html -->
<!DOCTYPE html>
<html>
<head>
    <link href="StyleSheet.css" rel="stylesheet" type="text/css">
</head>
<body>
    <center>
        <h1>Pink Frag Event Organizer</h1><br>
    </center>
    <table width="100%">
        <tr>
            <td width="20%">
                <a id="home1" href="index.html">Home</a><br>
                <a id="events" href="events.html">Events</a><br>
                <a id="aboutus" href="aboutUs.html">About Us</a><br>
                <a id="contactus" href="contactUs.html">Contact Us</a><br>
            </td>

            <td width="80%" style="display: inline-block;margin-top: -20px;">
                <h2>Contact Us</h2>
                <p>14/509A,Sterlin Street,Nungambakkam, Chennai - 600034.</p>
                <p>Mobile : 9596645125</p>
                <p>Landline : 0422-2727272</p>
                <p>EMail : pinkfragOfficial@gmail.com</p>
            </td>
        </tr>
    </table>
</body>

</html>

<!-- aboutUs.html -->
<!DOCTYPE html>
<html>

<head>
    <link href="StyleSheet.css" rel="stylesheet" type="text/css">
</head>

<body>
    <center>
        <h1>Pink Frag Event Organizer</h1><br>
    </center>
    <table width="100%">
        <tr>
            <td width="20%">
                <a id="home1" href="index.html">Home</a><br>
                <a id="events" href="events.html">Events</a><br>
                <a id="aboutus" href="aboutUs.html">About Us</a><br>
                <a id="contactus" href="contactUs.html">Contact Us</a><br>
            </td>

            <td width="80%" style="display: inline-block;margin-top: -20px;">
                <h2>About Us</h2>
                <p>Pink Frag Event is a reputed organization,
                    which has come into being in 2009, as a Sole Proprietorship
                    Firm, with a sole aim of achieving the trust and support of
                    large customers. We have indulged our all endeavors towards
                    offering trustworthy Wedding Event Management, Promotional
                    Event Management, Birthday Party Management and many more.
                    To offer these services, we have hired specialized professionals, who are
                    capable of understanding as well as accomplishing the specific
                    customers’ desires.</p>
            </td>
        </tr>
    </table>
</body>

</html>

<!-- events.html -->
<!DOCTYPE html>
<html>

<head>
    <link href="StyleSheet.css" rel="stylesheet" type="text/css">
</head>

<body>
    <center>
        <h1>Pink Frag Event Organizer</h1><br>
    </center>
    <table width="100%">
        <tr style="display:inline-flex;">
            <td width="20%" style="display:inline;">
                <a id="home1" href="index.html">Home</a><br>
                <a id="events" class="index" name="index1" href="events.html">Events</a><br>
                <a id="aboutus" href="aboutUs.html">About Us</a><br>
                <a id="contactus" href="contactUs.html">Contact Us</a>
            </td>
            <td width="80%" style="display: inline-block;margin-top: -20px;">
                <h2>Events</h2>
                <h3>Corporate Events</h3>
                <p width="60%">A corporate event can be defined as a gathering that is sponsored by a business for its
                    employees, business partners, clients and/or prospective clients. These events can be for larger
                    audiences such as conventions or smaller events like conferences, meetings or holiday parties.</p>
                <h3>Wedding Planning</h3>
                <p>A wedding planner is a professional who assists with the design, planning and management of a
                    client's wedding. Weddings are significant events in people's lives and as such, couples are often
                    willing to spend considerable amount of money to ensure that their weddings are well-organized.
                    Wedding planners are often used by couples who work long hours and have little spare time available
                    for sourcing and managing wedding venues and wedding suppliers.</p>
                <h3>Product Launches</h3>
                <p>The debut of product into the market. The product launch signifies the point at which consumers first
                    have access to a new product.</p>
            </td>
        </tr>
    </table>
</body>

</html>

<!-- index.html -->
<!DOCTYPE html>
<html>

<head>
    <style>
        a {
            background-color: #00CED1;
            color: #000000;
            width: 100px;
            border: 1px solid #000000;
            padding: 15px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 5px;
        }

        a:hover {
            background-color: #4CAF50;
            color: #FFFFFF;
        }

        a:active {
            background-color: #F0E68C;
            color: #FF8C00;
        }
    </style>
</head>

<body>
    <center>
        <h1>Pink Frag Event Organizer</h1><br>
    </center>
    <table width="100%">
        <tr>
            <td width="20%">
                <a id="home1" href="index.html">Home</a><br>
                <a id="events" href="events.html">Events</a><br>
                <a id="aboutus" href="aboutUs.html">About Us</a><br>
                <a id="contactus" href="contactUs.html">Contact Us</a><br>
            </td>

            <td width="80%" style="display: inline-block;margin-top: -20px;">
                <h2>Pink Frag Event Organizer</h2>
                <p>We are indulged in offering a Promotional Event Management.
                    These services are provided by our team of professionals as
                    per the requirement of the client.
                    These services are highly praised for their features like
                    sophisticated technology, effective results and reliability. We offer
                    these services in a definite time frame and at affordable rates.</p>
            </td>
        </tr>
    </table>
</body>

</html>



<!-- 2nd question -->
<!DOCTYPE html>
<head>
    <style>
        img {
            display: block;
            margin: 20px auto;
            width: 80%;
            max-width: 600px;
        }
    </style>
</head>
<html>
<body>
    <h1>Wedding Album</h1>
    <img src="wedding.jpg" alt="Wedding Photo 1">
    <img src="wedding.jpg" alt="Wedding Photo 2" style="filter:grayscale(100%)">
</body>
</html>