25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- *{
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- }
- #main{
- width: 100%;
- height: 100vh;
- }
- </style>
- </head>
- <body>
- <div id="main"></div>
- </body>
- <script type="module" src="./js/main.js"></script>
-
- </html>
|