-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
160 lines (160 loc) · 4.53 KB
/
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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Golden Clock - Tetragrammaton inside the Fibonacci Sequence</title>
<link rel="stylesheet" href="./index.css" />
</head>
<body>
<section>
<h1>The Golden Clock</h1>
<h5>Kevin López</h5>
</section>
<section>
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<path
id="circle-1"
fill="none"
stroke-width="0"
stroke="white"
d="
M 10, 50
a 40,40 0 1,1 80,0
a 40,40 0 1,1 -80,0
"
/>
<path
id="circle-2"
fill="none"
stroke-width="0"
stroke="white"
d="
M 15 50
a 10,10 0 1,1 70,0
a 20,20 0 1,1 -70,0
"
/>
<path
id="circle-3"
fill="none"
stroke-width="0"
stroke="white"
d="
M 20 50
a 10,10 0 1,1 60,0
a 20,20 0 1,1 -60,0
"
/>
<path
id="circle-4"
fill="none"
stroke-width="0"
stroke="skyblue"
d="
M 25 50
a 10,10 0 1,1 50,0
a 20,20 0 1,1 -50,0
"
/>
<path
id="circle-5"
fill="none"
stroke-width="0"
stroke="white"
d="
M 30 50
a 10,10 0 1,1 40,0
a 10,10 0 1,1 -40,0
"
/>
<path
id="circle-6"
fill="none"
stroke-width="0"
stroke="white"
d="
M 40 50
a 10,10 0 1,1 20,0
a 10,10 0 1,1 -20,0
"
/>
<text
id="text-1"
font-family="monospace"
font-size="3"
font-weight="normal"
textLength="233"
>
<textPath textLength="233" id="text-path-1" href="#circle-1">
055055055055
</textPath>
</text>
<text
id="text-2"
font-family="monospace"
font-size="4"
font-weight="normal"
textLength="219"
>
<textPath textLength="219" id="text-path-2" href="#circle-2">
1123 8314 9437 7741 6178 3819 9987 2796 1673 3369 4932 7291
</textPath>
</text>
<text
id="text-3"
font-family="monospace"
font-size="5"
font-weight="normal"
textLength="183"
>
<textPath textLength="183" id="text-path-3" href="#circle-3">
7 7 5 1 4 3 6 6 8 3 9 1
</textPath>
</text>
<text
id="text-4"
font-family="monospace"
font-size="5"
font-weight="normal"
textLength="139"
>
<textPath textLength="139" id="text-path-4" href="#circle-4">
1 8 2 4
</textPath>
</text>
<text
id="text-5"
font-family="monospace"
font-size="5"
font-weight="normal"
textLength="122"
>
<textPath textLength="122" id="text-path-5" href="#circle-5">
6 5 10 5
</textPath>
</text>
<text
id="text-6"
font-family="Helvetica, sans-serif"
font-size="10"
font-weight="normal"
textLength="57"
>
<textPath class="chrome-only" textLength="57" id="text-path-6" href="#circle-6">
ה י ה ו
</textPath>
<textPath startOffset="5" class="safari-only" textLength="59" id="text-path-6" href="#circle-6">
ה י ה ו
</textPath>
</text>
</svg>
</section>
<section>
<p class="text-center">I found the <a href="https://en.wikipedia.org/wiki/Tetragrammaton">tetragrammaton</a> inside the fibonacci sequence. See the explanation <a href="https://github.com/RGkevin/golden-clock">here</a>.</p>
<p class="text-center">v0.2.3</p>
</section>
</body>
<script src="//cdn.jsdelivr.net/npm/bowser@2.11.0/es5.min.js "></script>
<script src="./index.js"></script>
</html>