Template 1 CSS
template.html — 1.1 KB
File contents
<!DOCTYPE html> <html> <head> <title> Pierwszy template </title> <style> div{ font-weight: bold; } #header{ background-color: yellow; font-size: 54pt; text-align: center; padding: 1ex; } #menu{ background-color: green; padding: 50px 0; } #content{ background-color: darkgray; height: 500px; } #footer{ background-color: black; color: white; text-align: center; } </style> </head> <body> <!-- header--> <div id="header"> Header </div> <!-- menu--> <div id="menu"> MENU </div> <!-- content--> <div id="content"> CONTENT </div> <!-- footer--> <div id="footer"> FOOTER </div> </body> </html>