-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (45 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<title>Oxford Ruby User Group</title>
<style type="text/css">
#container {
width: 600px;
margin: 0 auto;
font-family: georgia, serif;
line-height: 1.5;
color: #333;
padding-top: 100px;
background: url(ruby.jpg) no-repeat 250px 20px;
}
h1,
h2 {
text-align: center;
font-family: tahoma, arial, sans-serif;
text-shadow: 1px 1px 2px #ccc;
}
a {
color: #9D1414;
text-decoration: none;
border-bottom: 1px solid #EEA5A5;
}
a:hover,
a:active {
color: #741C1C;
border-bottom: 1px solid #9D1414;
}
</style>
</head>
<body>
<div id="container">
<h1>Oxford Ruby User Group</h1>
<p>The <a href="http://en.wikipedia.org/wiki/Oxford">Oxford</a> <a href="http://www.rubyusergroups.org/">Ruby User
Group</a> is a chance for local people using or interested in <a href="http://www.ruby-lang.org/">Ruby</a> or <a
href="http://rubyonrails.org/">Rails</a> to get together in a friendly environment and chat. We try to meet on a
monthly basis. Please feel free to join us!</p>
<p>The best way to find out about our meetups is to join the #ruby channel in <strong><a
href="https://digitaloxford.com/our-community/">the Digital Oxford Slack</a></strong>.</p>
<p>We're also on Mastodon: <a href="https://ruby.social/@oxrug">@oxrug@ruby.social</a>.</p>
</div>
</body>
</html>