forked from uniqname/UIDev-substrate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
96 lines (59 loc) · 3.34 KB
/
gallery.html
File metadata and controls
96 lines (59 loc) · 3.34 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Famous Creatures Gallery</title>
<link href="css/reset.css" rel="stylesheet">
<!-- phone-default -->
<link href="css/phone-default.css" rel="stylesheet">
<!-- enhance-tablet -->
<link href="css/tablet.css" rel="stylesheet">
<!-- enhance-desktop -->
<link href="css/desktop.css" rel="stylesheet">
</head>
<body>
<div id="contentWrapper">
<div id="content">
<h1>Famous Creatures</h1>
<div class="row">
<article class="gallery">
<img src="img/otter.jpeg" alt="Carter Brown" title="otter" />
<figcaption>Annoyed at the length of the photo shoot, this otter diva barks at her assistant for another cuppachino.</figcaption>
</article>
<article class="gallery">
<img src="img/snail.jpeg" alt="Harrision K. B." title="snail" />
<figcaption>Considered a star in the snail community, this little guy can be seen in two shots in Pixar's 'A Bug's Life' and acheived child star status with his premiering role in 'Honey I Shrunk the Kids'.</figcaption>
</article>
<article class="gallery">
<img src="img/fox.jpeg" alt="Amber Crockett" title="Fox"/>
<figcaption>In a shameful and desperate attempt for attention, this granddaughter of the once great fox of Fox in Socks fame, claims to have been the inspiration behind the ears on Josie and her Pussycats. Aside from the obvious problem of the band's ears being feline in nature and foxes being of the canine varity, there is also the anachronistic problems, Josie predating this young fox by several decades... Just shameful!</figcaption>
</article>
<article class="gallery">
<img src="img/Northern_Baikal_Russia.jpeg" alt="Creative Commons" />
<figcaption>Widely roumored to be the site of the elusive Durmstrang school for wizards, made famous (infamous?) in the works of renouned biographer J.K. Rowling's epic seven part expose on one Harry Potter, this lake in northern Russia Baikal region has long been known for it's magical properites and unexplained evnets.</figcaption>
</article>
<article class="gallery">
<img src="img/taranchula.jpeg" alt="Creative Commons" title="Taranchula"/>
<figcaption>This gentle giant of the land-based arachnids is a common house pet for a legion of adolesant and pre-adolesant boys.</figcaption>
</article>
</div><!--end row-->
<div class="row">
<article class="gallery">
<img src="img/chimps.jpeg" alt="Creative Commons" title="Chimpanzes" />
<figcaption>A plesant picnic in the grass adds some extra color to another beautiful day on the preserve</figcaption>
</article>
<article class="gallery">
<img src="img/African_elephant.jpeg" alt="Creative Commons" title="African elephants" />
</article>
</div><!--end row-->
<div class="row">
<article class="gallery">
<img src="img/bird.jpeg" alt="Creative Commons" title="Bird is the word"/>
<figcaption>A mysogonist bird makes cat calls at a passing female on his lunch break. The bird was later reported to H.R. and his union rep, but was merely given a slap on the wrist. When questioned about the diminutive punishment, the H.R. rep stated unapologetically, 'birds will be birds.' Of no comfort to the passing female as this was the thrid time this week she had been whistled at in a tone denoting that the male is available for mating</figcaption>
</article>
</div><!--end row-->
<div class="keepOpen"></div>
</div><!-- end content -->
</div><!-- end content wrapper -->
</body>
</html>