-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 933 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Circle Solver</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, minimum-scale=1, maximum-scale=1"/>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="third-party/react.js"></script>
<script src="Utils.js"></script>
<script src="Styles.js"></script>
<script src="elements/Logo.js"></script>
<script src="elements/EditBox.js"></script>
<script src="elements/CircleDiagram.js"></script>
<script src="elements/CircleEditor.js"></script>
</head>
<body>
<script>
React.render(
Div({id: "content"},
Logo(),
Small({className: "instructions"}, "Type a value in any blank and then click outside to update calculations."),
CircleEditor()
),
document.body
);
</script>
</body>
</html>