-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
44 lines (40 loc) · 1.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
<!doctype html>
<html>
<head>
<style>
html {
background: #444 url(skyline.jpg) no-repeat center center fixed;
background-size: cover;
text-align: center;
}
.logo {
display: inline-block;
border: 5px solid #fff;
border-radius: 10px;
margin: 50px 30px;
box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.logo img {
display: block;
border-radius: 5px;
width: 120px;
height: 120px;
}
.credit {
color: #aaa;
font-family: sans-serif;
font-size: 12px;
position: absolute;
bottom: 10px;
right: 10px;
}
</style>
</head>
<body>
<a class="logo" href="http://brooklynjs.com"><img src="logos/brooklyn_js.png"></a>
<a class="logo" href="http://jerseyscript.github.io"><img src="logos/jerseyscript.png"></a>
<a class="logo" href="http://manhattanjs.com"><img src="logos/manhattan_js.png"></a>
<a class="logo" href="http://www.meetup.com/QueensJS"><img src="logos/queens_js.png"></a>
<a class="credit" href="https://www.flickr.com/photos/justininsd/8013982631">Photo by justininsd</a>
</body>
</html>