-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
73 lines (61 loc) · 1.71 KB
/
gallery.html
File metadata and controls
73 lines (61 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<head>
<title>img</title>
<link rel="stylesheet" href="proj.css">
</head>
<body>
<style>
body{
background-color: burlywood;
}
div.gallery {
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 280px;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
border-radius: 50%;
}
div.desc {
padding: 15px;
text-align: center;
}
</style>
</head>
<body>
<div class="gallery">
<a target="_blank" href="Images/goodie.jpg">
<img src="goodie.jpg" alt="Cinque Terre" width="600" height="400">
</a>
<div class="desc"> 💗
</div>
</div>
<div class="gallery">
<a target="_blank" href="avatar 2.jpg">
<img src="avatar 2.jpg" alt="Forest" width="600" height="400">
</a>
<div class="desc">😀
</div>
</div>
<div class="gallery">
<a target="_blank" href="Anonymous.jpg">
<img src="Anonymous.jpg" alt="Northern Lights" width="600" height="400">
</a>
<div class="desc"> 😄
</div>
</div>
<div class="gallery">
<a target="_blank" href="harley.jpg">
<img src="harley.jpg" alt="Mountains" width="600" height="400">
</a>
<div class="desc"> 😍
</div>
</div>
</body>
</html>