Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ReemAbuRajab7 authored Nov 10, 2024
1 parent 6bb3966 commit 36b48ad
Show file tree
Hide file tree
Showing 8 changed files with 71 additions and 0 deletions.
Binary file added img/1.jpg
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 img/2.jpg
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 img/3.jpg
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 img/4.jpg
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 img/5.jpg
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 img/6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 39 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>

<link rel="stylesheet" href="styles.css">

</head>
<body>

<div class="gallery-container">

<div class="gallery-item">
<img src="./img/1.jpg" alt="Image 1">
</div>

<div class="gallery-item">
<img src="./img/2.jpg" alt="Image 2">
</div>

<div class="gallery-item">
<img src="./img/3.jpg" alt="Image 3">
</div>

<div class="gallery-item">
<img src="./img/4.jpg" alt="Image 4">
</div>

<div class="gallery-item">
<img src="./img/5.jpg" alt="Image 5">
</div>

<div class="gallery-item">
<img src="./img/6.jpg" alt="Image 6">
</div>

</div>

</body>
</html>
32 changes: 32 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
* {
margin: 0;
padding: 0;
}

body {
display: flex;
justify-content: center;
align-items: center;
height: 900px;
}

.gallery-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 20px;
width: 1200px;
}

.gallery-item {
width: 30%;

}

.gallery-item img {
width: 100%;
}



0 comments on commit 36b48ad

Please sign in to comment.