-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (65 loc) · 2.57 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
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacktoberfest mit boudicca.events & ÖH Informatik JKU</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
text-align: center;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
img.banner {
width: 100%;
margin-bottom: 20px;
}
h1 {
font-size: 2em;
margin-bottom: 20px;
}
.content {
text-align: left;
margin-bottom: 20px;
}
.details {
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<!-- Banner Image -->
<img src="hacktoberfest2024.boudicca.events.png" alt="Hacktoberfest Banner" class="banner">
<!-- German Content -->
<div class="language-section">
<h1>Hacktoberfest mit boudicca.events & ÖH Informatik JKU</h1>
<div class="content">
<p class="details">Wann: 18.10. 14:00-19:00</p>
<p class="details">Wo: JKU Linz, Science Park 2, Raum S2 044</p>
<p>Was: Du wolltest schon immer mal an einem Open Source Projekt mitwirken, nutze die Chance diesen Hacktober mit boudicca.events an der JKU! Wir stehen dir mit Rat und Tat zur Seite, um deinen ersten Commit zu begleiten.</p>
<p>Für mehr infos komm auf unseren Discord: <a href="https://discord.gg/Wa3SFBsAxS">https://discord.gg/Wa3SFBsAxS</a></p>
</div>
</div>
<!-- English Content (Translation) -->
<div class="language-section">
<h1>Hacktoberfest with boudicca.events & ÖH Informatics JKU</h1>
<div class="content">
<p class="details">When: 18.10. 14:00-19:00</p>
<p class="details">Where: JKU Linz, Science Park 2, Room S2 044</p>
<p>What: Have you always wanted to contribute to an open-source project? Take the leap this Hacktober with boudicca.events at JKU! We're here to assist and guide you through your first commit.</p>
<p>For more details join our Discord: <a href="https://discord.gg/Wa3SFBsAxS">https://discord.gg/Wa3SFBsAxS</a></p>
</div>
</div>
</div>
</body>
</html>