computer-graphics-study/index.html

21 lines
861 B
HTML
Raw Permalink Normal View History

2021-09-02 17:46:36 +09:00
<!DOCTYPE html>
<html>
<head>
<title>Computer Graphics Study</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
2021-10-09 23:43:17 +09:00
<script type="module" src="./index.tsx" defer></script>
2021-09-02 17:46:36 +09:00
</head>
<body>
2021-09-05 15:46:06 +09:00
<canvas id="canvas" width="500" height="500"></canvas>
2021-09-28 17:51:14 +09:00
<div id="drawer-button">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-list" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"/>
</svg>
</div>
<div id="drawer">
</div>
2021-09-02 17:46:36 +09:00
</body>
</html>