21 lines
418 B
HTML
21 lines
418 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
* {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<button class='reset' >Next</button>
|
|
<script src="p5.min.js"></script>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html>
|