-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnna.html
More file actions
48 lines (41 loc) · 1.04 KB
/
Copy pathAnna.html
File metadata and controls
48 lines (41 loc) · 1.04 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
<html>
<head>
<style>
div.gallery {
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 180px;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
}
</style>
</head>
<body>
<br>
<h1>Introducing... Anna </h1>
<br>
<div class="gallery">
<a target="_blank" href="img_5terre.jpg">
<img src="https://cdn.geekwire.com/wp-content/uploads/2018/06/seattle-tents-1260x945.jpg" alt="Cinque Terre" width="600" height="400">
</a>
<div class="desc">Worried about the homeless? well not anymore, Anna literally housed every person</div>
</div>
<div class="gallery">
<a target="_blank" href="img_forest.jpg">
<img src="https://ichef.bbci.co.uk/news/800/cpsprodpb/156EE/production/_113309778_gettyimages-524903696.jpg" alt="Forest" width="600" height="400">
</a>
<div class="desc">Unfortunately Anna only had this handful of grain to give, so world hunger is still a problem</div>
</div>
<h2>She's also pretty hot</h2>
</body>
</html>