forked from mdabydeen/mobile_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.html
38 lines (35 loc) · 855 Bytes
/
graph.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE HTML>
<html>
<head>
<style>
body {
margin: 0px;
<<<<<<< HEAD
padding: 10px;
=======
padding: 0px;
>>>>>>> 57565eb6ca76938412c2b269522b835f8c2923c4
}
#myCanvas {
border: 1px solid #9C9898;
}
</style>
<<<<<<< HEAD
<script src="http://code.jquery.com/jquery-latest.min.js"
type="text/javascript"></script>
=======
<script src="http://code.jquery.com/jquery-latest.min.js"
type="text/javascript"></script>
>>>>>>> 57565eb6ca76938412c2b269522b835f8c2923c4
<script src="graph.js"
type="text/javascript"></script>
</head>
<body>
<<<<<<< HEAD
<canvas id="graph" width="500" height="500"></canvas>
=======
<canvas id="graph" width="300" height="300"></canvas>
>>>>>>> 57565eb6ca76938412c2b269522b835f8c2923c4
<div id="test"></div>
</body>
</html>