Skip to content

Commit

Permalink
Merge pull request #127 from AlishaMahapatra/main
Browse files Browse the repository at this point in the history
Issue #4 Resolved
  • Loading branch information
binayaksadangi authored Oct 11, 2022
2 parents 4477577 + ca6d851 commit 6e8d585
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 0 deletions.
Binary file added Alisha/Dark chocolate photo/dark chocolate1.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 Alisha/Dark chocolate photo/dark-chocolate.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 Alisha/Dark chocolate photo/dark-chocolates.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 Alisha/Dark chocolate photo/download (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 Alisha/Dark chocolate photo/download 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 Alisha/Dark chocolate photo/download.jfif
Binary file not shown.
19 changes: 19 additions & 0 deletions Alisha/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.wrapper h1{
text-align: center;
font-size: 30px;
font-family: Arial, Helvetica, sans-serif;
}
.img-area{
display: flex;
flex-wrap: wrap;
flex-direction: row;
align-items: center;
justify-content: center;
}
.single-img{
padding: 0 20px 20px;
}
img:hover{
opacity: .5;
transition: .9S;
}
21 changes: 21 additions & 0 deletions Alisha/task1.html.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Dark chocolates gallery using flexbox</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<h1>Flexbox Image Gallery</h1>
<div class="img-area">
<div class="single-img"><img src="Dark chocolate photo/dark chocolate1.jpg" width="300", height="300"></div>
<div class="single-img"><img src="Dark chocolate photo/dark-chocolate.jpg" width="300", height="300"></div>
<div class="single-img"><img src="Dark chocolate photo/dark-chocolates.jpg" width="300", height="300"></div>
<div class="single-img"><img src="Dark chocolate photo/download (1).jpg" width="300", height="300"></div>
<div class="single-img"><img src="Dark chocolate photo/download.jfif" width="300", height="300"></div>
<div class="single-img"><img src="Dark chocolate photo/download 1.jpg" width="300", height="300"></div>
</div>
</div>
</body>
</html>

0 comments on commit 6e8d585

Please sign in to comment.