Werde-Informatiklehrerin/index.html

74 lines
2.2 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WIL - Werde Informatiklehrerin</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
color: #333;
}
.container {
background: white;
border-radius: 15px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
text-align: center;
}
h1 {
color: #2c3e50;
font-size: 2.5em;
margin-bottom: 20px;
}
.status {
background: #e8f4f8;
border-left: 4px solid #3498db;
padding: 20px;
margin: 20px 0;
border-radius: 0 8px 8px 0;
}
.port-info {
background: #f8f9fa;
border: 1px solid #dee2e6;
padding: 15px;
border-radius: 8px;
margin: 20px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>🎓 WIL - Werde Informatiklehrerin</h1>
<div class="status">
<h3>🚀 Projekt läuft!</h3>
<p>Dieses Projekt ist über den Web Project Manager gestartet worden.</p>
</div>
<div class="port-info">
<h4>📋 Projekt-Info:</h4>
<p><strong>Port:</strong> 8003</p>
<p><strong>URL:</strong> http://localhost:8003</p>
<p><strong>Status:</strong> 🟢 Aktiv</p>
</div>
<p>Hier kannst du dein WIL-Projekt entwickeln!</p>
<div class="status">
<h3>💡 Nächste Schritte:</h3>
<ul style="text-align: left;">
<li>Erstelle deine HTML-Dateien in diesem Ordner</li>
<li>Füge CSS und JavaScript hinzu</li>
<li>Entwickle dein Projekt weiter</li>
</ul>
</div>
</div>
</body>
</html>