-
Notifications
You must be signed in to change notification settings - Fork 4
/
media.html
81 lines (71 loc) · 1.71 KB
/
media.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
<style>
div.img {
margin: 35px;
float: left;
width: 200px;
border: 0;
}
div.img img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
}
div.img90{
-webkit-transform:rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
margin: 35px;
float: left;
width: 200px;
div.img90 img {
width: 100%;
height: auto;
}
</style>
<body>
<div id="textbox">
<h2 id="media">Media and Current Events</h2>
Check here for pictures and other media from recent CLEAR events!
<h3>September Dinner</h3>
<div class="img90">
<a target="_blank" href="images/sept_dinner/IMG_0782.JPG">
<img src="images/sept_dinner/IMG_0782.JPG" width="200">
</a>
</div>
<div class="img90">
<a target="_blank" href="images/sept_dinner/IMG_0783.JPG">
<img src="images/sept_dinner/IMG_0783.JPG" width="200">
</a>
</div>
<div class="img90">
<a target="_blank" href="images/sept_dinner/IMG_0784.JPG">
<img src="images/sept_dinner/IMG_0784.JPG" width="200">
</a>
</div>
<div class="img90">
<a target="_blank" href="images/sept_dinner/IMG_0785.JPG">
<img src="images/sept_dinner/IMG_0785.JPG" width="200">
</a>
</div>
<div class="img">
<a target="_blank" href="images/sept_dinner/IMG_0786.JPG">
<img src="images/sept_dinner/IMG_0786.JPG" width="200">
</a>
</div>
<div class="img90">
<a target="_blank" href="images/sept_dinner/IMG_0787.JPG">
<img src="images/sept_dinner/IMG_0787.JPG" width="200">
</a>
</div>
<div class="img">
<a target="_blank" href="images/sept_dinner/IMG_0788.JPG">
<img src="images/sept_dinner/IMG_0788.JPG" width="200">
</a>
</div>
</div>
</body>