<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>About Us - EmanuBrain</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            margin: 0;

            padding: 0;

        }

        .container {

            max-width: 800px;

            margin: 50px auto;

            padding: 20px;

        }

        h1, h2, p {

            margin-bottom: 20px;

        }

        .team-member {

            display: flex;

            align-items: center;

            margin-bottom: 20px;

        }

        .team-member img {

            width: 100px;

            height: 100px;

            border-radius: 50%;

            margin-right: 20px;

        }

        .team-member-details {

            flex-grow: 1;

        }

    </style>

</head>

<body>


<div class="container">

    <h1>About Us</h1>

    <h2>Our Mission</h2>

    <p>EmanuBrain is dedicated to leveraging the power of artificial intelligence to solve real-world problems and improve lives.</p>

    

    <h2>Our Team</h2>

    <div class="team-member">

        <img src="team_member1.jpg" alt="Team Member 1">

        <div class="team-member-details">

            <h3>Sunil Shukla</h3>

            <p>Co-Founder & CEO</p>

            <p>Sunil Shukla is a visionary leader with a passion for technology and innovation.</p>

        </div>

    </div>

    <div class="team-member">

        <img src="team_member2.jpg" alt="Team Member 2">

        <div class="team-member-details">

            <h3>Rahul Singhh</h3>

            <p>Co-Founder & CTO</p>

            <p>Rahul is an expert in machine learning algorithms and brings a wealth of technical expertise to the team.</p>

        </div>

    </div>

    

    <h2>Contact Us</h2>

    <p>If you have any questions or inquiries, feel free to <a href="contact.html">contact us</a>.</p>

</div>


</body>

</html>