-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
20 lines (20 loc) · 847 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="description" content="Circles of Apollonius" />
<meta name="keywords" content="Circles of Apollonius, math, circles, apollonius, geometry, conformal maps" />
<meta name="keywords" content="javascript, canvas, graphics" />
<meta name="author" content="Jeremy Herr" />
<meta charset="UTF-8" />
<title>Circles of Apollonius</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<canvas id="canvasApollonius" width="1000" height="600"></canvas>
<div class="page">
</div> <!-- /page -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="apollonius.js"></script>
</body>
</html>