Initial commit

This commit is contained in:
Marcel
2019-04-08 21:26:42 +02:00
commit 1acef216b6
2 changed files with 205 additions and 0 deletions

22
index.html Normal file
View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Graph.js</title>
<style>
#canvas {
width: 100%;
height: calc(100vh - 100px);
}
</style>
</head>
<body>
<h1 id="equation" contenteditable>x^2</h1>
<canvas width="500" height="500" id="canvas"></canvas>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="main.js"></script>
</body>
</html>