Files
http/templates/index_css.html
2026-04-02 10:33:23 -04:00

45 lines
1010 B
HTML

<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Prosta strona z CSS</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f8ff;
color: #333;
text-align: center;
padding: 50px;
}
h1 {
color: #2c3e50;
}
p {
font-size: 18px;
}
.button {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
font-size: 16px;
color: #fff;
background-color: #3498db;
border: none;
border-radius: 5px;
text-decoration: none;
}
.button:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<h1>Witaj na mojej prostej stronie!</h1>
<p>To jest przykładowa strona HTML z prostym CSS.</p>
<a href="/" class="button">Powrót do strony głównej</a>
</body>
</html>