Skip to content

Commit

Permalink
dd
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Dec 10, 2024
1 parent ff51005 commit e7ca76f
Show file tree
Hide file tree
Showing 5 changed files with 96 additions and 0 deletions.
62 changes: 62 additions & 0 deletions about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
/* General Reset */
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}

/* About Section */
#about {
text-align: center;
padding: 50px 20px;
background-color: #ffffff;
}

#about h1 {
font-size: 2.5em;
margin-bottom: 20px;
color: #333;
}

/* Profile Container */
.profiles {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.profile {
background: #f9f9f9;
border: 1px solid #ddd;
border-radius: 10px;
padding: 20px;
width: 250px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s;
}

.profile:hover {
transform: scale(1.05);
}

.profile img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 15px;
}

.profile h2 {
font-size: 1.5em;
color: #333;
margin: 10px 0;
}

.profile p {
font-size: 1em;
color: #777;
margin: 0;
}
34 changes: 34 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!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>
<link rel="stylesheet" href="styles.css">
</head>

<body>
<section id="about">
<h1>About Us</h1>
<div class="profiles">
<div class="profile">
<img src="/pics/WhatsApp Image 2024-08-28 at 17.47.00.jpeg" alt="Profile 1">
<h2>John Doe</h2>
<p>Web Developer</p>
</div>
<div class="profile">
<img src="/pics/WhatsApp Image 2024-08-28 at 23.31.48.jpeg" alt="Profile 2">
<h2>Jane Smith</h2>
<p>UI/UX Designer</p>
</div>
<div class="profile">
<img src="/pics/dark_rider-character.webp" alt="Profile 3">
<h2>Mike Johnson</h2>
<p>Project Manager</p>
</div>
</div>
</section>
</body>

</html>
Binary file added pics/WhatsApp Image 2024-08-28 at 17.47.00.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 pics/WhatsApp Image 2024-08-28 at 23.31.48.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 pics/dark_rider-character.webp
Binary file not shown.

0 comments on commit e7ca76f

Please sign in to comment.