-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (38 loc) · 1.47 KB
/
index.html
File metadata and controls
50 lines (38 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="Description" content="4 image Gallery with different functionality " />
<link rel="stylesheet" href="assets/css/style.css">
<title>Gallery with different functionality</title>
<style>
* {
box-sizing: border-box;
margin: 0%;
padding: 0%;
}
body {
padding: 10%;
}
</style>
</head>
<body>
<h2>Gallery : Click on the images below..</h2><br>
<h1 class="mesg" style="color:red;"></h1><br><br>
<div style="display:grid;grid-auto-flow: column;gap:0.5rem;">
<button class="img1"><img src="./img1.jpg" alt="img1" style="width:200px"></button>
<button class="img2"><img src="./img2.jpg" alt="img2" style="width:200px"></button>
<button class="img3"><img src="./img3.jpg" id="abc" alt="img3" style="width:200px;"></button>
<button class="img4"><img src="./img4.jpeg" alt="img4" style="width:200px"></button>
</div>
<br><br>
<p class="details" style="text-align: center;color:yellowgreen"></p><br>
<button class="dicegame" style="border:none">
<img src="./diceimg.gif" id="def" alt="img5" style="width:150px ;display:none;margin-left:50px">
</button>
</div><br><br>
<script src="scripts.js"></script>
</body>
</html>