-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 1004 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (25 loc) · 1004 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Archimedes' Pi Day 2021</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body onload="update()">
<div id="main">
<h1>Pi Day 2021: Archimedes Approximation</h1>
<div id="info_pane">
<p>Sides: <span id="n_sides" class="number">6</span></p>
<p>π ≈ <span id="approx_pi" class="number">0</span></p>
<a href="https://github.com/nwager/pi-day-2021">Github</a></br>
<button type="button" onclick="halve()" id="halve">sides / 2</button>
<button type="button" onclick="double()" id="double">sides × 2</button>
</div>
</br>
<canvas id="myCanvas" style="border:1px solid #d3d3d3;">
Your browser does not support the canvas element.
</canvas>
</div>
<script src="draw-shape.js"></script>
</body>
</html>