-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
173 lines (173 loc) · 6.13 KB
/
Copy pathindex.html
File metadata and controls
173 lines (173 loc) · 6.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Evolution of Technology</title>
<link rel="stylesheet" href="style.css" />
<style>
body {
background: linear-gradient(
120deg,
#f7e7c2 0%,
#e4d6b7 40%,
#b7c4d6 70%,
#c2e0ff 90%,
#e6e0ff 100%
);
min-height: 100vh;
transition: background 0.7s;
}
.hero-art {
width: 100%;
max-width: 820px;
margin: 2.5rem auto 2.5rem auto;
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 0.5rem;
opacity: 0.92;
}
.hero-art svg {
height: 90px;
}
.era-grid {
margin-top: 2.5rem;
}
</style>
</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">Future & Beyond</a></li>
</ul>
</nav>
</header>
<main>
<div class="hero-art">
<!-- Stone Age: Cave -->
<svg viewBox="0 0 110 90">
<ellipse cx="55" cy="75" rx="45" ry="15" fill="#bca17a" />
<ellipse cx="55" cy="55" rx="35" ry="35" fill="#e1c699" />
<ellipse
cx="55"
cy="55"
rx="18"
ry="18"
fill="#fffbe6"
opacity="0.09"
/>
</svg>
<!-- Egypt: Pyramid -->
<svg viewBox="0 0 110 90">
<polygon
points="55,15 100,75 10,75"
fill="#e2c275"
stroke="#bfa142"
stroke-width="3"
/>
</svg>
<!-- India: Stupa -->
<svg viewBox="0 0 110 90">
<ellipse cx="55" cy="75" rx="30" ry="10" fill="#bfa142" />
<ellipse cx="55" cy="65" rx="22" ry="8" fill="#e2c275" />
<rect
x="47"
y="40"
width="16"
height="20"
fill="#d4af37"
rx="5"
/>
</svg>
<!-- Industrial: Steam Engine -->
<svg viewBox="0 0 110 90">
<rect
x="20"
y="55"
width="70"
height="25"
fill="#444"
rx="8"
/>
<circle cx="40" cy="80" r="10" fill="#888" />
<circle cx="80" cy="80" r="10" fill="#888" />
</svg>
<!-- Digital: Monitor -->
<svg viewBox="0 0 110 90">
<rect
x="30"
y="30"
width="50"
height="35"
rx="7"
fill="#212121"
/>
<rect
x="40"
y="45"
width="30"
height="10"
rx="2"
fill="#00c3ff"
/>
</svg>
<!-- Future: Rocket -->
<svg viewBox="0 0 110 90">
<polygon points="55,20 85,70 25,70" fill="#00c3ff" />
<rect x="47" y="70" width="16" height="14" fill="#fff" />
</svg>
</div>
<section class="intro">
<h1>Evolution of Technology</h1>
<p>
Journey through humanity’s greatest eras of invention and
imagination. Each era features unique art, interactive
demos, and a living atmosphere to immerse you in the spirit
of its time.
</p>
<div class="era-grid">
<a
href="stone-age.html"
class="era-link"
style="background: #f7e7c2"
>🪨 Stone Age</a
>
<a
href="ancient.html"
class="era-link"
style="background: #e4d6b7"
>🏺 Ancient Civilizations</a
>
<a
href="industrial.html"
class="era-link"
style="background: #b7c4d6"
>🚂 Industrial Revolution</a
>
<a
href="digital.html"
class="era-link"
style="background: #c2e0ff"
>💻 Digital Era</a
>
<a
href="future.html"
class="era-link"
style="background: #e6e0ff"
>🚀 Future & Beyond</a
>
</div>
</section>
</main>
<footer>
<p>© 2025 Evolution of Technology</p>
</footer>
</body>
</html>