Untitled

 avatar
unknown
plain_text
2 months ago
2.0 kB
9
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Bailarines Inc - Team & Contact</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 40px;
            background-color: #f8f9fa;
            color: #333;
        }
        .container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        h1 {
            text-align: center;
            color: #0a2540;
            margin-bottom: 10px;
        }
        h2 {
            color: #0a2540;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 10px;
        }
        .team-member {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        .team-member:last-child {
            border-bottom: none;
        }
        strong {
            color: #0a2540;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Bailarines Inc</h1>
        <h2>Team Members</h2>
        
        <div class="team-member">
            <strong>Christopher De La Torre</strong><br>
            Email: [email protected]<br>
            Phone: (956) 325-3619
        </div>

        <div class="team-member">
            <strong>Reuben Sieler</strong><br>
            Email: [email protected]<br>
            Phone: (713) 817-4476
        </div>

        <div class="team-member">
            <strong>Carlos Nunez</strong><br>
            Email: [email protected]<br>
            Phone: (941) 419-1643
        </div>

        <h2>Contact Information</h2>
        <p>You can reach our team using the details above.</p>
    </div>
</body>
</html>
Editor is loading...
Leave a Comment