<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } .column { float: left; width: 33.3%; margin-bottom: 16px; padding: 0 8px; } @media screen and (max-width: 650px) { .column { width: 100%; display: block; } } .card { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); } .container { padding: 0 16px; } .container::after, .row::after { content: ""; clear: both; display: table; } .title { color: rgb(0, 0, 0); text-align: center; } .button { border: none; outline: 0; display: inline-block; padding: 8px; color: white; background-color: #000; text-align: center; cursor: pointer; width: 100%; } .button:hover { background-color: #555; } </style> </head> <body> <h2 style="text-align:center">ABOUT US</h2> <p style="text-align:center">Meet The Team</p> <br> <div class="row"> <div class="column"> <div class="card"> <img src="1.jpeg" alt="Jane" style="width:100%"> <div class="container"> <h2 style="text-align:center">CH. Tarun Sai</h2> <p class="title">CEO & Founder</p> <p>As a team leader and an entrepreneur I find ways and strategies to build my company as competitive as possible</p> <p>tarunchaganam@gmail.com</p> <p><button class="button">Contact</button></p> </div> </div> </div> <div class="column"> <div class="card"> <img src="2.jpeg" alt="Mike" style="width:100%"> <div class="container"> <h2 style="text-align:center">Sree Harish</h2> <p class="title">Frondend and ML Developer</p> <p>Front end web developer as well as Machine learning developer with my skills i try to understand current trends of app and web interface as well as algorithms to stay users engaged and also try to build a great platform for customers.</p> <p>sreeharisharikrishnan@gmail.com</p> <p><button class="button">Contact</button></p> </div> </div> </div> <div class="column"> <div class="card"> <img src="3.jpeg" alt="John" style="width:100%"> <div class="container"> <h2 style="text-align:center">Ellu Rushikeshwar</h2> <p class="title">Account Manager</p> <p>Efficiently manages all the financials details and discovers new strategies for revenue and cost efficient model.</p> <p>rushikeswaryadav123@gmail.com</p> <p><button class="button">Contact</button></p> </div> </div> </div> </div> </body> </html>