-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
167 lines (144 loc) · 5.02 KB
/
index.html
File metadata and controls
167 lines (144 loc) · 5.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creative Web Experiments</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: #0f0f0f;
color: #fff;
line-height: 1.6;
padding: 2rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
header {
text-align: center;
margin-bottom: 4rem;
padding: 2rem 0;
}
h1 {
font-size: 3rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.subtitle {
font-size: 1.2rem;
color: #888;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.project-card {
background: #1a1a1a;
border-radius: 12px;
overflow: hidden;
transition: transform 0.3s ease;
}
.project-card:hover {
transform: translateY(-5px);
}
.project-card a {
text-decoration: none;
color: inherit;
display: block;
padding: 1.5rem;
}
.project-title {
font-size: 1.5rem;
margin-bottom: 0.5rem;
color: #fff;
}
.project-description {
color: #888;
font-size: 0.9rem;
}
footer {
text-align: center;
margin-top: 4rem;
padding: 2rem 0;
color: #888;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Creative Web Experiments</h1>
<p class="subtitle">A collection of interactive web experiences and visual experiments</p>
</header>
<main class="projects-grid">
<div class="project-card">
<a href="geometry/index.html">
<h2 class="project-title">3D Geometry</h2>
<p class="project-description">Explore interactive 3D geometric models and shapes</p>
</a>
</div>
<div class="project-card">
<a href="cubes/index.html">
<h2 class="project-title">Cubes</h2>
<p class="project-description">Interactive cube-based visualization experiment</p>
</a>
</div>
<div class="project-card">
<a href="flow-fields/index.html">
<h2 class="project-title">Flow Fields</h2>
<p class="project-description">Generative art using flow field algorithms</p>
</a>
</div>
<div class="project-card">
<a href="letter-dots/index.html">
<h2 class="project-title">Letter Dots</h2>
<p class="project-description">Typography experiments with particle systems</p>
</a>
</div>
<div class="project-card">
<a href="light-beams/lightbeams.html">
<h2 class="project-title">Light Beams</h2>
<p class="project-description">Dynamic light beam visualization effects</p>
</a>
</div>
<div class="project-card">
<a href="light-beams-op/lightbeams.html">
<h2 class="project-title">Light Beams Optimized</h2>
<p class="project-description">Dynamic light beam visualization effects</p>
</a>
</div>
<div class="project-card">
<a href="pixels/index.html">
<h2 class="project-title">Pixels</h2>
<p class="project-description">Creative pixel manipulation experiments</p>
</a>
</div>
<div class="project-card">
<a href="spiral/index.html">
<h2 class="project-title">Spiral</h2>
<p class="project-description">Mesmerizing spiral-based animations</p>
</a>
</div>
<div class="project-card">
<a href="personal-website/solar-system-portfolio.html">
<h2 class="project-title">Solar System Portfolio</h2>
<p class="project-description">Interactive portfolio with a solar system theme</p>
</a>
</div>
</main>
<footer>
<p>© 2025 Creative Web Experiments. All rights reserved.</p>
</footer>
</div>
</body>
</html>