HTMLify

indev.html
Views: 140 | Author: dakshbadal1379
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
         body{
            margin: 30px;
        }
        li,a{
            list-style: square;
            display: inline;
            padding: 8px;
            background-color: rgb(243, 143, 143);  
            text-decoration: none;
            font-family: Arial, Helvetica, sans-serif;
            color: whitesmoke;  
            
        }
        img{
            width: 500px;
            height: 300px;
        }
        table,td,th{
            border: 2px solid black;
            border-collapse: collapse;
            padding: 7px;
            font-size: 23px;
        }
    </style>
</head>
<body>
    <h1>About Our Team</h1><br>
    <strong> Our dedicated team</strong> consists of <em>highly skilled professionals</em> who are passionate about technology<br>
    and innovation.<br>
    We believe in <mark>delivering exceptional solutions</mark> to our clients by <em>combining expertise with<br>
    creativity.</em><hr>
    <h1>Meet Our Team</h1>
    <p style="margin-left: 25%; font-size: 20px;"><b>Meet Our Team</b></p>
        <table>
            <thead>
                <tr>
                    <th>Name</th>
                    <th>Email</th>
                    <th>Role</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>John doe</td>
                    <td>john530@gmail.com</td>
                    <td>software Engineer</td>
                </tr>
                <tr>
                    <td>Jone Smith</td>
                    <td>jane.smith560@gmail.com</td>
                    <td>System Analyst</td>
                </tr>
                <tr>
                    <td>Micheal Johnson</td>
                    <td>Michea120@gmail.com</td>
                    <td>Cybersecurity Specialist</td>
                </tr>
            </tbody>
        </table>
        <br>
        <h1>Our Expertise</h1>

</body>
</html>

Comments