-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
=
committed
Dec 10, 2024
1 parent
ff51005
commit e7ca76f
Showing
5 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.