-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from ujjwalshivhare/patch-4
Create image gallery
- Loading branch information
Showing
1 changed file
with
54 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,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> |