Skip to content

Commit

Permalink
Merge pull request #99 from ujjwalshivhare/patch-4
Browse files Browse the repository at this point in the history
Create image gallery
  • Loading branch information
debrajrout authored Oct 3, 2023
2 parents b49a4b8 + 3a4811d commit a4c1ccb
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions image gallery
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>image gallery</title>
<style>
body{
font-family: sans-serif;
}

h1{
text-align: center;
color: forestgreen;
margin: 30px 0 50px;
}

gallery{
margin: 10px 50px;
}

.gallery img{
width: 225px;
padding: 5px;
}

.gallery img:hover{
transform: scale(1.1);
}
</style>
</head>
<body>
<h1>Image gallery</h1>

<div class="gallery">
<img src="images/member-5.png" alt="">
<img src="images/member-6.png" alt="">
<img src="images/member-5.png" alt="">
<img src="images/member-6.png" alt="">
<img src="images/member-5.png" alt="">
<img src="images/member-6.png" alt="">
<img src="images/member-5.png" alt="">
<img src="images/member-6.png" alt="">
<img src="images/member-5.png" alt="">
<img src="images/member-6.png" alt="">
<img src="images/member-5.png" alt="">
<img src="images/member-6.png" alt="">
<img src="images/member-5.png" alt="">
<img src="images/member-6.png" alt="">

</div>

</body>
</html>

0 comments on commit a4c1ccb

Please sign in to comment.