-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·24 lines (23 loc) · 1019 Bytes
/
index.html
File metadata and controls
executable file
·24 lines (23 loc) · 1019 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>The Fundamental Theorem of Arithmetic</title>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<link rel="stylesheet" type="text/css" href="prime_style.css">
</head>
<body>
<div id="prime-tooltip" class="hidden">
<p>A number with exactly two factors, 1 and itself. There is an infinity of prime numbers.</p>
</div>
<div id="one-tooltip" class="hidden">
<p>the only factor of 1 is 1 — but prime numbers must have <em>exactly</em> two factors.</p>
</div>
<div id="theorem-tooltip" class="hidden">
<p> The fundamental theorem of arithmetic states that every whole number larger than one is either a <strong class="splash-emph">prime</strong> number or can be expressed as a <strong class="splash-emph">unique product</strong> of prime numbers.</p>
</div>
<script src="fund_theorem_script.js">
</script>
</body>
</html>