-
Notifications
You must be signed in to change notification settings - Fork 0
/
definitionsofpi.html
62 lines (53 loc) · 2.18 KB
/
definitionsofpi.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<title>pi-this</title>
<link rel="icon" href="https://pi-this.github.io/logo.png">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://pi-this.github.io/css/homestyle.css"></link>
</link>
</head>
<body>
<div class="header">
<t>pi-this</t>
<p>Pi this, pi that @ pi-this.github.io</p>
<p id="pi" ></p>
</div>
<div class="topnav">
<a id="leftlink" href="https://pi-this.github.io/">Home</a>
<a id="leftlink" href="https://pi-this.github.io/definitionsofpi">definitions</a>
<a id="rightlink" href="https://pi-this.github.io/profile">private profile</a>
<a id="rightlink" href="https://pi-this.github.io/profilesettings">profile settings</a>
<a id="leftlink" href="https://pi-this.github.io/programming">coding</a>
<a id="leftlink" href="https://pi-this.github.io/games">games</a>
<a id="leftlink" href="https://pi-this.github.io/art">art</a>
</div>
<div class="row">
<center><h1>Definitions</h1></center>
<div class="column">
<h2>Pi</h2>
<p>Pi is a number. Although it's length is long, it's value is only a little above three. The number's first fifteen didgets are: 3.14159265358979</p>
<p>get a more detailed definition on the word pi by looking at the <a href="https://www.merriam-webster.com/dictionary/pi">merriam webster dictionary</a>.</p>
</div>
<div class="column">
<h2>Raspberry Pi</h2>
<p>The raspberry pi is not a pie with raspberries inside, that's a raspberry pie, with an E. The raspberry pi is a small pocket sized commuter that costs less than any other normal computer. This computer is there to help the newer generation as a learning tool.</p>
<p>To learn more about the raspberry pi go to <a href="https://www.raspberrypi.org/help/what-%20is-a-raspberry-pi/">raspberrypi.org</a>.</p>
</div>
</div>
<script>
var i = 0;
var txt = "3.1415926535897932384626433832795028841971693993751058209749445923078...";
var speed = 50;
function typeWriter() {
if (i < txt.length) {
document.getElementById("pi").innerHTML += txt.charAt(i);
i++;
setTimeout(typeWriter, speed);
}
}
typeWriter();
</script>
</body>
</html>