-
Notifications
You must be signed in to change notification settings - Fork 1
/
welcome.html
59 lines (54 loc) · 2.1 KB
/
welcome.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
<html>
<head>
<title>Willkommen</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap" rel="stylesheet">
<style>
body {
font-size: 12px;
font-family: 'Press Start 2P', cursive, monospace;
line-height: 1.4;
}
ul {
list-style: square inside;
}
</style>
</head>
<body>
<h1 style="color: red">Willkommen zur Review-Messe</h1>
<p>
Mit den Pfeiltasten auf der Tastatur könnt ihr euch in der Welt bewegen. An den Tischen könnt ihr per "Leertaste" den jeweiligen Team-Kanal betreten.
</p>
<p style="margin-bottom: 3rem">
Des Weiteren werden Ad-Hoc-Meetings mit anderen Teilnehmern erstellt, wenn ihr zu ihnen lauft. Bis zu vier Personen können direkt miteinander sprechen - verdeutlicht wird das mit einem Kreis um deinen Avatar.
</p>
<h2 style="color: blue">Orientierung</h2>
Auf der linken Seite der Map findet ihr die Teams:
<ul>
<li>Engagement Marketing</li>
<li>Brand & Verticals</li>
<li>Reach & Engagement</li>
<li>Digital Subscriptions</li>
<li>Audio & Video</li>
<li>SZ Digital</li>
<li>Entwicklungsredaktion</li>
<li>Newsletter</li>
<li>DE Consumity</li>
<li>DE SZ-Magazin</li>
<li>DE Indieview</li>
</ul>
Auf der rechten Seite findet ihr die Teams:
<ul>
<li>Apps</li>
<li>CMS Lux</li>
<li>CMS LiDo</li>
<li>Pay - Paid Content</li>
<li>Pay - Abo Conversion</li>
<li>Jetzt.de</li>
<li>Module</li>
<li>Agile Runde</li>
<li>Cloud & Infrastruktur</li>
</ul>
</body>
</html>