-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·82 lines (72 loc) · 3.19 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Photo Stream</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONTS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href='https://fonts.googleapis.com/css?family=Work+Sans:400,500' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Cousine' rel='stylesheet' type='text/css'>
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="styles/all.min.css">
<!-- JS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script type="text/javascript" src="scripts/all.min.js"></script>
</head>
<body>
<header class="circle--header">
<div class="bounds">
<div class="grid-100">
<h1>Photo Stream</h1>
</div>
</div>
</header>
<div class="bounds">
<div class="grid-100">
<ul class="photo-stream--photos--list">
<li>
<a>
<div class="circle--avatar">
<img src="content/m-spore.png" />
</div>
<h3>David Hiser</h3>
</a>
<img src="content/1.jpg" />
<p>Aspen residents help U.S. Forest Service personnel plant seedlings at Marron Lake Campground, 12 miles North of Aspen. The native aspen trees in this popular camp area have been dying of a root disease. The USFS didn't have enough people for the replanting job so citizens volunteered their services. Snow covered peaks in background are the 14,000 foot maroon bells.</p>
<p class="timestamp">Taken in May, 1972</p>
</li>
<li>
<a>
<div class="circle--avatar">
<img src="content/m-spore.png" />
</div>
<h3>Charles O'Rear</h3>
</a>
<img src="content/3.jpg" />
<p>Diving into the Colorado River at "Parker Strip," a favorite swimming spot of Southern Californians and Arizonians. Increasing salinity of the water may prove a drawback to future enjoyment.</p>
<p class="timestamp">Taken in April, 1973</p>
</li>
<li>
<a>
<div class="circle--avatar">
<img src="content/m-spore.png" />
</div>
<h3>Boyd Norton</h3>
</a>
<img src="content/2.jpg" />
<p>Vacationers on motorcycles.</p>
<p class="timestamp">Taken in May, 1972</p>
</li>
</ul>
</div>
</div>
</body>
</html>