Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html>
- <title>Practice</title>
- <head>
- <style>
- .area
- {
- height: 940px;
- width: 1900px;
- background-color:grey;
- }
- .header
- {
- height: 200px;
- width: 1900px;
- background-color: black;
- }
- .side
- {
- height: 600px;
- width: 300px;
- background-color: red;
- }
- .footer
- {
- height: 200px;
- width: 1900px;
- background-color: green;
- }
- .home
- {
- height: 200px;
- width: 300px;
- background-color: blue;
- text-align: center;
- }
- .nothome
- {
- height: 200px;
- width: 300px;
- background-color: black;
- }
- </style>
- </head>
- <body>
- <div class="area">
- <div class="header">
- </div>
- <div class="side">
- <div class="home">
- Home sweet home
- </div>
- <div class="nothome">
- </div>
- </div>
- <div class="footer">
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement