You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
514 B
HTML
28 lines
514 B
HTML
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<style>
|
|
body {
|
|
background: linear-gradient(
|
|
135deg,
|
|
white 0%,
|
|
white 49%,
|
|
black 49%,
|
|
black 51%,
|
|
white 51%,
|
|
white 100%
|
|
) repeat;
|
|
background-size: 20px 20px;
|
|
}
|
|
canvas {
|
|
background-color: white;
|
|
}
|
|
</style>
|
|
<title>s e t</title>
|
|
</head>
|
|
<script type="module">
|
|
import init from './set.js'
|
|
init()
|
|
</script>
|
|
</html>
|