Untitled

mail@pastecode.io avatar
unknown
html
a month ago
2.2 kB
2
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Pavan Chandan Reddy - Admin</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f0f8ff;
        }
        .container {
            width: 80%;
            margin: 0 auto;
            padding: 20px;
            background: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
            border-radius: 8px;
        }
        h1, h2 {
            color: #ff4500; /* Vibrant orange */
        }
        h1 {
            border-bottom: 3px solid #ff4500; /* Vibrant orange */
            padding-bottom: 10px;
        }
        p {
            line-height: 1.6;
        }
        .contact-info {
            margin-top: 20px;
            padding: 15px;
            background: #e6f7ff; /* Light blue background */
            border-left: 5px solid #ff4500; /* Vibrant orange */
            border-radius: 4px;
        }
        .contact-info p {
            margin: 0;
        }
        .footer {
            margin-top: 20px;
            text-align: center;
            font-size: 0.9em;
            color: #666;
        }
        .footer p {
            color: #ff4500; /* Vibrant orange for footer text */
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Pavan Chandan Reddy</h1>
        <h2>Admin</h2>
        <p>Welcome to the official webpage of Pavan Chandan Reddy. We are experts in manufacturing complete office furniture. Our range includes every type of office furniture you might need, from tables and chairs to sofas and more.</p>
        
        <div class="contact-info">
            <h3>Contact Information</h3>
            <p>Phone: <strong>9000024153</strong></p>
            <p>For inquiries about our products or services, please feel free to reach out to us.</p>
        </div>
        
        <div class="footer">
            <p>&copy; 2024 Pavan Chandan Reddy. All rights reserved.</p>
        </div>
    </div>
</body>
</html>
Leave a Comment