graph.js/index.html

23 lines
446 B
HTML
Raw Permalink Normal View History

2019-04-08 19:26:42 +00:00
<!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>