-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1006 Bytes
/
index.html
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
<!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.0">
<title>Morphin Cube Animation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div id="toggle-btn"></div>
<div id="shape" class="cube">
<div class="face one">1</div>
<div class="face two">2</div>
<div class="face three">3</div>
<div class="face four">4</div>
<div class="face five">5</div>
<div class="face six">6</div>
<div class="face seven">7</div>
<div class="face eight">8</div>
<div class="face nine">9</div>
<div class="face ten">10</div>
<div class="face eleven">11</div>
<div class="face twelve">12</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>