Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

há 3 anos
123456789101112131415161718192021222324
  1. <html lang="en">
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. *{
  9. padding: 0;
  10. margin: 0;
  11. box-sizing: border-box;
  12. }
  13. #main{
  14. width: 100%;
  15. height: 100vh;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <div id="main"></div>
  21. </body>
  22. <script type="module" src="./js/model.js"></script>
  23. </html>