@jawirhytam/kurokuro
Version:
A DjawaScript Turtle Graphics library.
31 lines (28 loc) • 777 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KuroKuro - DjawaScript Turtle Graphics</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
canvas {
border: 2px solid #333;
background-color: #fff;
}
</style>
</head>
<body>
<canvas id="kurokuroCanvas" width="600" height="600"></canvas>
<!-- Core Kurokuro Library -->
<script src="kurokuro.js"></script>
<!-- User's transpiled script will be injected dynamically -->
</body>
</html>