-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.33 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.33 KB
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
<html>
<head>
<title>Number Redux</title>
</head>
<style>
#main {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#submit {
width: 40%;
height: 2em;
}
#number-input {
width: 100%;
height: 100%;
text-align: center;
font-size: 1.1em;
}
</style>
<body>
<div id="main">
<h1>
<!-- water.earth .;. air.fire -->
♣️♠️♥️♦️ FRACTAL M🃏TH MACHINE ♦️♥️♠️♣️
</h1>
<h1></|•|\> <span id="i1">enter your number to start</span> </|•|\></h1>
<h1 id="i2_container">{\|•|/} <span id="i2">enter your number to start</span> {\|•|/}</h1>
<br />
<form id="submit" autocomplete="off" onsubmit="event.preventDefault(); return false;">
<input id="number-input" type="text" placeholder="0.384308016785167307" />
</form>
</div>
<script src="number_reducer.js"></script>
</body>
</html>