1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html>
- <head>
- <style type="text/css">
- html, body {
- margin: 0px; padding: 0;
- background-color: green;
- }
- div {
- margin: 40px;
- background-color: blue;
- height: 20px;
- }
- </style>
- </head>
- <body>
- <div></div>
- </body>
- </html>
|