Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create a Team Section with cards containing Photo, LinkedIn Id and Designation of team members #29

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Piyush5/1.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Piyush5/2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Piyush5/3.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
91 changes: 91 additions & 0 deletions Piyush5/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Team Section</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}

.team-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding: 20px;
}

.team-card {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
margin: 10px;
width: 300px;
text-align: center;
padding: 20px;
}

.team-card img {
width: 150px;
height: 150px;
border-radius: 50%;
margin: 0 auto 20px;
object-fit: cover;
}

.team-card h3 {
font-size: 20px;
margin: 0;
}

.team-card p {
font-size: 16px;
color: #777;
}

.linkedin-link {
margin-top: 10px;
}

.linkedin-link a {
text-decoration: none;
color: #0077b5;
font-weight: bold;
}
</style>
</head>
<body>
<div class="team-container">
<div class="team-card">
<img src="1.jpeg" alt="Team Member 1">
<h3>John Doe</h3>
<p>Web Developer</p>
<div class="linkedin-link">
<a href="https://www.linkedin.com/in/johndoe" target="_blank">LinkedIn</a>
</div>
</div>
<div class="team-card">
<img src="2.jpeg" alt="Team Member 2">
<h3>Jane Smith</h3>
<p>Graphic Designer</p>
<div class="linkedin-link">
<a href="https://www.linkedin.com/in/janesmith" target="_blank">LinkedIn</a>
</div>
</div>
<div class="team-card">
<img src="3.jpeg" alt="Team Member 3">
<h3>Alice Johnson</h3>
<p>Marketing Manager</p>
<div class="linkedin-link">
<a href="https://www.linkedin.com/in/alicejohnson" target="_blank">LinkedIn</a>
</div>
</div>
<!-- Add more team cards as needed -->
</div>
</body>
</html>
1 change: 1 addition & 0 deletions Piyush5/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
## issue solved