-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (35 loc) · 1.62 KB
/
Copy pathindex.html
File metadata and controls
49 lines (35 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>3D CSS Cube Animation | emmanuell-dev</title>
<meta name="title" content="3D CSS Cube Animation">
<meta name="description" content="A pure CSS 3D assembly animation exploring spatial UI, perspective, and keyframe orchestration.">
<meta name="keywords" content="CSS3, 3D Transforms, Web Animation, HTML5, Frontend Developer, emmanuell-dev">
<meta name="author" content="Emmanuel">
<meta property="og:type" content="website">
<meta property="og:url" content="https://emmanuell-dev.github.io/css-3d-cube-animation/">
<meta property="og:title" content="3D CSS Cube Animation">
<meta property="og:description" content="Check out this interactive, self-assembling 3D cube built entirely with CSS.">
<meta property="twitter:card" content="summary">
<meta property="twitter:url" content="https://emmanuell-dev.github.io/css-3d-cube-animation/">
<meta property="twitter:title" content="3D CSS Cube Animation">
<meta property="twitter:description" content="Pure CSS 3D geometry and animation experiment.">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="cubes">
<div class="box front"></div>
<div class="box back"></div>
<div class="box right"></div>
<div class="box left"></div>
<div class="box top"></div>
<div class="box bottom"></div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>