-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 845 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="./src/css/layout.css">
<link rel="stylesheet" href="./src/css/reset.css">
<link rel="stylesheet" href="./src//css/components.css">
</head>
<body>
<header id="header"></header>
<main id="main">
<section id="origin">
<div class="canvas-div">
<canvas id="originCanvas" width="640" height="360"></canvas>
</div>
</section>
<section id="processed">
<div class="canvas-div">
<canvas id="processCanvas" width="640" height="360"></canvas>
</div>
</section>
</main>
</body>
<script type="module" src="./src/js/index.js"></script>
</html>