0% found this document useful (0 votes)
7 views5 pages

About Us HTML Project

The document is an HTML page titled 'About Us' that introduces four team members: Ujjwal Pratap Verma, Raghavendra Karval, Adish Yadav, and Devesh Singh, each with a brief description of their roles and email contact information. The page features a styled layout with a header, sections for each person, and a footer. It emphasizes the team's diverse skills in coding, design, marketing, and project management.

Uploaded by

Ujjwal Verma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views5 pages

About Us HTML Project

The document is an HTML page titled 'About Us' that introduces four team members: Ujjwal Pratap Verma, Raghavendra Karval, Adish Yadav, and Devesh Singh, each with a brief description of their roles and email contact information. The page features a styled layout with a header, sections for each person, and a footer. It emphasizes the team's diverse skills in coding, design, marketing, and project management.

Uploaded by

Ujjwal Verma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

<!

DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

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


scale=1.0">

<title>About Us</title>

<style>

body {

font-family: Arial, sans-serif;

margin: 0;

padding: 0;

background-color: #f4f4f4;

color: #333;

header {

background-color: #007BFF;

color: white;

1
text-align: center;

padding: 1em;

font-size: 2em;

section {

margin: 20px;

.person {

border: 2px solid #007BFF;

padding: 20px;

margin-bottom: 20px;

background-color: white;

img {

max-width: 100%;

height: auto;

border-radius: 50%;

2
}

</style>

</head>

<body>

<header>

<h1>About Us</h1>

</header>

<section class="person">

<img src="file:///C:/Users/lenovo/Desktop/IMG-20231224-
WA0016.jpg" alt="Person 1">

<h2>Ujjwal Pratap Verma</h2>

<p>Ujjwal is a passionate individual who loves coding and creating


innovative solutions. With a background in computer science, he brings
a wealth of technical knowledge to the team.</p>

<p><strong>Email:</strong> [email protected]</p>

</section>

<section class="person">

3
<img src="file:///C:/Users/lenovo/Desktop/WhatsApp%20Image
%202023-12-24%20at%2021.59.20_c62ef464.jpg" alt="Person 2">

<h2>Raghavendra Karval</h2>

<p>Raghavendra is a creative designer with an eye for detail.He


loves turning ideas into visually appealing designs. His dedication to
aesthetics adds a unique touch to our projects.</p>

<p><strong>Email:</strong> [email protected]</p>

</section>

<section class="person">

<img src="file:///C:/Users/lenovo/Desktop/eef.jpg" alt="Person


3">

<h2>Adish Yadav</h2>

<p>Adish is a marketing guru with a passion for connecting brands


with their audience. With a strategic mindset, he helps our projects
reach wider audiences and achieve success.</p>

<p><strong>Email:</strong> [email protected]</p>

</section>

<section class="person">

4
<h2>Devesh Singh</h2>

<p>Devesh is a skilled project manager who ensures that our team


stays organized and delivers projects on time. Her leadership and
communication skills are invaluable to our success.</p>

<p><strong>Email:</strong> [email protected]</p>

</section>

<footer>

<p>&copy; 2023 Our Team. All rights reserved.</p>

</footer>

</body>

</html>

You might also like