index.html 724 B

123456789101112131415161718192021222324252627282930313233
  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. * {
  10. margin: 0;
  11. padding: 0;
  12. font-size: 0
  13. }
  14. .i {
  15. width: 200px;
  16. height: 200px;
  17. /* border: 1px solid orangered; */
  18. background-color: #000;
  19. /* float: left; */
  20. margin: 0;
  21. border: 0
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <img src="./1_answer_a.png" alt="" class="i">
  27. <img src="./1_answer_b.png" alt="" class="i">
  28. </body>
  29. </html>