1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <style type="text/css">
- *{
- margin: 0;
- padding: 0;
- }
- body{
- position: absolute;
- height: 100%;
- width: 100%;
- background-color: #000000;
- }
- .c1{
- width: 80%;
- height: 60%;
- }
- </style>
- </head>
- <body>
- <div class="c1" ></div>
- </body>
- </html>
|