Fix canvas is not a self closing tag. (#2408)

Co-authored-by: ltzz <ltzz@users.noreply.github.com>
This commit is contained in:
ltzz 2021-01-05 00:31:01 +09:00 committed by GitHub
parent b79f5b2739
commit 9d80e7dc17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -3,6 +3,6 @@
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
</head>
<body>
<canvas id="canvas" height="150" width="150" />
<canvas id="canvas" height="150" width="150"></canvas>
</body>
</html>

View File

@ -3,7 +3,7 @@
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
</head>
<body>
<canvas id="canvas" height="150" width="150" />
<canvas id="canvas" height="150" width="150"></canvas>
<script src='./index.js'></script>
</body>
</html>

View File

@ -3,6 +3,6 @@
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
</head>
<body>
<canvas id="canvas" height="150" width="150" />
<canvas id="canvas" height="150" width="150"></canvas>
</body>
</html>

View File

@ -3,6 +3,6 @@
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
</head>
<body>
<canvas id="canvas" height="150" width="150" />
<canvas id="canvas" height="150" width="150"></canvas>
</body>
</html>