1_test.html 375 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. div{
  10. width: 200px;
  11. height: 200px;
  12. background: red;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div>
  18. 123
  19. </div>
  20. </body>
  21. </html>