-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, intial-scale=0.8">
<title>CPH Gophers</title>
<style>
* {
font-size: 18px;
}
body {
font-family: 'Gill Sans', sans-serif;
text-align: center;
background: #375EAB;
color: white;
}
h1 {
font-size: 2em;
padding-top: 2em;
letter-spacing: 0.25em;
}
p {
font-size: 1em;
padding: .5em;
margin: .5em;
}
a {
color: rgb(229, 240, 250);
}
a:hover {
color: rgba(229, 240, 250, .7);
}
img {
width: 10em;
}
hr {
margin-top: 1em;
margin-bottom: 1em;
margin-left: 10%;
margin-right: 10%;
height: 1px;
border-top: 1px solid rgba(255,255,255,1);
border-right: 0;
border-bottom: 0;
border-left: 0;
}
.card {
display: inline-block;
vertical-align: top;
}
</style>
</head>
<body>
<h1>Copenhagen Gophers</h1>
<p><small>Copenhagen Golang Meetup Group</small></p>
<hr>
<div class="card">
<p><img alt="Mer-gopher" src="mascot.svg"/></p>
</div>
<div class="card">
<p>Meetups are announced at <a href="https://www.meetup.com/go-cph/">meetup.com/go-cph</a>
<p>Tweeting at <a href="https://twitter.com/cphgophers">@CphGophers</a>
<p>Talking in the <a href="https://gophers.slack.com/archives/C2SCDK6ES">#cphgophers</a> channel in the Gophers Slack org (<a href="https://invite.slack.golangbridge.org/">signup link</a>)
<p>Slides and resources from talks and presentations on <a href="https://github.com/CphGophers/talks">GitHub</a></p>
</body>
</html>