-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (40 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Choose Your October RubyConf</title>
<link rel="stylesheet" href="styles.css"
</head>
<body>
<div class="container">
<h1>Want to attend a Ruby conference in October 2023?</h1>
<h2>You're spoiled for choice! Choose wisely, or not, your call...</h2>
<p>Here are your options:</p>
<div class="conferences">
<div class="conference" id="railsWorld">
<a href="https://rubyonrails.org/2023/4/6/rails-world-is-coming">
<img src="images/railsworld.svg" alt="Rails World Logo">
</a>
<p>Rails World - Amsterdam, 5-6 October</p>
</div>
<div class="conference" id="rubyConfTh">
<a href="https://rubyconfth.com">
<img src="images/rubyconfth.svg" alt="RubyConf Thailand Logo">
</a>
<p>RubyConf Thailand - Bangkok, 6-7 October</p>
</div>
<div class="conference" id="rockyMtn">
<a href="https://rockymtnruby.dev/">
<img src="images/rockymountain.svg" alt="Rocky Mountain Ruby Logo">
</a>
<p>Rocky Mountain Ruby - Boulder, 5-6 October</p>
</div>
</div>
<footer>
Brought to you with ♥ by the completely unbiased <a href="https://bangkokrb.org">Bangkok.rb</a> team
</footer>
</div>
<script src="script.js"></script>
</body>
</html>