80 lines
2.1 KiB
HTML
Executable File
80 lines
2.1 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>doing-it Wiki</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
|
|
background: #161618;
|
|
color: #ebebec;
|
|
line-height: 1.6;
|
|
padding: 40px 20px;
|
|
}
|
|
.container {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
}
|
|
h1 {
|
|
font-size: 48px;
|
|
font-weight: 600;
|
|
margin-bottom: 20px;
|
|
color: #ebebec;
|
|
}
|
|
h2 {
|
|
font-size: 32px;
|
|
font-weight: 600;
|
|
margin: 40px 0 20px;
|
|
color: #ebebec;
|
|
}
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
li {
|
|
margin: 15px 0;
|
|
}
|
|
a {
|
|
color: #ff3b30;
|
|
text-decoration: none;
|
|
font-size: 18px;
|
|
transition: color 0.3s;
|
|
display: inline-block;
|
|
}
|
|
a:hover {
|
|
color: #ff453a;
|
|
}
|
|
.intro {
|
|
font-size: 20px;
|
|
color: #d4d4d4;
|
|
margin-bottom: 40px;
|
|
}
|
|
.content-preview {
|
|
background: #1c1c1e;
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
margin: 20px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>doing-it Wiki</h1>
|
|
<p class="intro">Willkommen im doing-it Wiki! Hier finden Sie nützliche Informationen rund um IT-Weiterbildung und Schulungen.</p>
|
|
<h2>Inhalte</h2>
|
|
<ul id="content-list">
|
|
<li><a href="/Home.md">Home</a></li>
|
|
<li><a href="/IT-Grundlagen.md">IT-Grundlagen</a></li>
|
|
<li><a href="/Ressourcen.md">Ressourcen</a></li>
|
|
<li><a href="/Schulungsmethoden.md">Schulungsmethoden</a></li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|