HTMLify

indes.html
Views: 148 | 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>
    <ul>
        <li><a href="indes.html" target="_blank">Home</a></li>
        <li><a href="indev.html" target="_blank">About Us</a></li>
        <li><a href="indec.html" target="_blank">Contact</a></li>
        <br><br></ul>
            <img src="system.jpg" type="image/jpg" >
            <hr>
        <h1>Welcome to Our IT Solutions Website</h1>
        We provide cutting-edge technology solutions to businesses worldwide.<br>
        Our Team of experts specializes in software development.cloud computing, cybersecurity, and<br>
        more.
        <hr>
        <h1>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>
        
    
</body>
</html>

Comments