<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Strona według wzoru</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
}
.header {
background-color: yellow;
text-align: center;
padding: 20px;
}
.footer {
background-color: peachpuff;
text-align: center;
padding: 20px;
position: absolute;
bottom: 0;
width: 100%;
}
.container {
display: flex;
min-height: calc(100vh - 100px); /* Adjust for header and footer height */
}
.left-panel {
background-color: orange;
width: 25%;
padding: 20px;
}
.center-panel {
background-color: lightblue;
width: 50%;
padding: 20px;
}
.right-panel {
background-color: lightgreen;
width: 25%;
padding: 20px;
}
</style>
</head>
<body>
<div class="header">
<h1>Nagłówek strony</h1>
</div>
<div class="container">
<div class="left-panel">
<p>Panel lewy</p>
</div>
<div class="center-panel">
<p>Panel środkowy</p>
</div>
<div class="right-panel">
<p>Panel prawy</p>
</div>
</div>
<div class="footer">
<p>Stopka strony</p>
</div>
</body>
</html>
Paste Hosted With By Wklejamy.pl