mirror of
https://github.com/byReqz/matrix-bg.git
synced 2024-11-23 14:34:55 +00:00
33 lines
730 B
HTML
33 lines
730 B
HTML
|
<!DOCTYPE html>
|
||
|
<html >
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>matrix runner</title>
|
||
|
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
|
||
|
|
||
|
|
||
|
<style>
|
||
|
/* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */
|
||
|
body {
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: flex-start;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<canvas id="myCanvas" width="600" height="300"></canvas>
|
||
|
|
||
|
<script src="js/index.js"></script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|