-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfuture.html
More file actions
230 lines (230 loc) · 8.54 KB
/
Copy pathfuture.html
File metadata and controls
230 lines (230 loc) · 8.54 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
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Future & Beyond | Evolution of Technology</title>
<link rel="stylesheet" href="style.css" />
<style>
body.future {
background:
linear-gradient(120deg, #e6e0ff 60%, #f9f5ff 100%),
url("https://www.transparenttextures.com/patterns/stardust.png");
background-blend-mode: lighten;
animation: future-bg-move 18s linear infinite alternate;
}
@keyframes future-bg-move {
0% {
background-position:
0 0,
0 0;
}
100% {
background-position:
0 0,
240px 240px;
}
}
.future-header-art {
width: 100%;
max-width: 700px;
margin: 1.5rem auto 2.2rem auto;
display: flex;
justify-content: center;
align-items: flex-end;
}
.future-header-art svg {
height: 80px;
}
.interactives > div {
background: #e6e0ff;
border: 2px solid #bdb2ff;
}
.future-glow {
filter: drop-shadow(0 0 18px #bdb2ff88);
}
</style>
<script>
document.addEventListener("DOMContentLoaded", () => {
document.body.className = "future";
});
</script>
<script defer src="script.js"></script>
</head>
<body>
<header>
<nav>
<a href="index.html" class="logo">Evolution of Technology</a>
<ul>
<li><a href="stone-age.html">Stone Age</a></li>
<li><a href="ancient.html">Ancient Civilizations</a></li>
<li><a href="industrial.html">Industrial Revolution</a></li>
<li><a href="digital.html">Digital Era</a></li>
<li>
<a href="future.html" class="active">Future & Beyond</a>
</li>
</ul>
</nav>
</header>
<main>
<div class="future-header-art">
<!-- Rocket + quantum bit + AI circuit -->
<svg viewBox="0 0 160 80" class="future-glow">
<polygon points="80,15 120,70 40,70" fill="#00c3ff" />
<rect x="70" y="70" width="20" height="10" fill="#fff" />
<!-- Qubit -->
<circle cx="135" cy="40" r="12" fill="#bdb2ff" />
<text
x="135"
y="45"
text-anchor="middle"
font-size="14"
fill="#fff"
font-family="monospace"
>
ψ
</text>
<!-- AI circuit lines -->
<rect x="30" y="35" width="12" height="6" fill="#bdb2ff" />
<rect x="30" y="50" width="12" height="6" fill="#bdb2ff" />
<rect x="30" y="65" width="12" height="6" fill="#bdb2ff" />
<line
x1="42"
y1="38"
x2="80"
y2="30"
stroke="#00c3ff"
stroke-width="2"
/>
<line
x1="42"
y1="53"
x2="80"
y2="35"
stroke="#00c3ff"
stroke-width="2"
/>
<line
x1="42"
y1="68"
x2="80"
y2="40"
stroke="#00c3ff"
stroke-width="2"
/>
</svg>
</div>
<h1>Future & Beyond</h1>
<p>
The future promises advances in AI, quantum computing,
biotechnology, and space exploration. Our relationship with
technology will continue to evolve in unpredictable ways.
</p>
<h2>Key Trends</h2>
<ul>
<li>Artificial Intelligence and generative models</li>
<li>Quantum computing and quantum networks</li>
<li>Nanotechnology and biotechnology</li>
<li>Space colonization and exploration</li>
<li>Brain-computer interfaces and augmented reality</li>
</ul>
<h2>Interactive Demos</h2>
<section class="interactives">
<div>
<h3>Rocket Launch</h3>
<p>Click the rocket to launch it into the future!</p>
<svg
id="rocket"
width="70"
height="110"
viewBox="0 0 70 110"
style="cursor: pointer; display: block; margin: auto"
>
<polygon
id="rocket-body"
points="35,15 60,90 10,90"
fill="#00c3ff"
/>
<rect
x="27"
y="90"
width="16"
height="14"
fill="#fff"
/>
<ellipse
id="flame"
cx="35"
cy="106"
rx="10"
ry="5"
fill="#ffc6ff"
opacity="0"
/>
</svg>
</div>
<div>
<h3>AI Chatbot (Demo)</h3>
<p>
Type a question and press Enter. Try:
<code>hello</code>, <code>ai</code>, <code>space</code>
</p>
<input
id="ai-input"
type="text"
placeholder="Ask the AI..."
style="width: 180px; font-size: 1.1em"
/>
<div
id="ai-output"
style="
font-size: 1.1em;
background: #f7f8fa;
border-radius: 8px;
padding: 0.4em 0.8em;
min-height: 1.6em;
"
></div>
</div>
<div>
<h3>Quantum Bit Visualizer</h3>
<p>
Click the qubit to cycle through states: |0⟩, |1⟩, and
superposition (ψ).
</p>
<div
id="qbit"
style="
font-size: 2.2em;
text-align: center;
background: #bdb2ff22;
border-radius: 50%;
width: 2em;
margin: auto;
cursor: pointer;
user-select: none;
"
>
0
</div>
</div>
</section>
<h2>Speculation & Imagination</h2>
<p>
Will we merge with machines? Will robots be our partners? Will
we solve climate change and hunger? The only certainty is
change.
</p>
<blockquote>
<b>Fun Fact:</b> In 2023, the first private mission landed
successfully on the Moon.
</blockquote>
<nav class="era-nav">
<a href="index.html">← Back to Home</a>
</nav>
</main>
<footer>
<p>© 2025 Evolution of Technology</p>
</footer>
</body>
</html>