65 lines
1.6 KiB
HTML
65 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Willkommen im Egonetix Portal</title>
|
|
<style>
|
|
h1 {
|
|
text-align: center;
|
|
font-size: 36px;
|
|
margin-top: 50px;
|
|
}
|
|
.links {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
margin-top: 50px;
|
|
}
|
|
.link {
|
|
text-align: center;
|
|
width: 200px;
|
|
height: 200px;
|
|
margin: 20px;
|
|
}
|
|
.link a {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
text-decoration: none;
|
|
color: black;
|
|
font-size: 18px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Willkommen im Egonetix Portal</h1>
|
|
<div class="links">
|
|
<div class="link">
|
|
<a href="https://helferlein.egonetix.de">
|
|
<img src="/bilder/wiki.jpg" alt="Wiki" width="200" height="200">
|
|
</a>
|
|
</div>
|
|
<div class="link">
|
|
<a href="https://blog.egonetix.de/">
|
|
<img src="/bilder/blog.jpg" alt="Blog" width="200" height="200">
|
|
</a>
|
|
</div>
|
|
<div class="link">
|
|
<a href="https://stream.egonetix.de">
|
|
<img src="/bilder/stream.png" alt="Stream" width="200" height="200">
|
|
</a>
|
|
</div>
|
|
<div class="link">
|
|
<a href="https://nextcloud.egonetix.de">
|
|
<img src="/bilder/nextcloud.png" alt="Nextcloud" width="200" height="200">
|
|
</a>
|
|
</div>
|
|
<div class="link">
|
|
<a href="https://owa.egonetix.de/webapp">
|
|
<img src="/bilder/email.jpg" alt="Webmail" width="200" height="200">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|