forked from Montana-Code-School/CSS-Animation-Sampler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·42 lines (40 loc) · 905 Bytes
/
index.html
File metadata and controls
executable file
·42 lines (40 loc) · 905 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel='stylesheet' href='style.css'>
</head>
<body>
<div class="box spin-grow">
<h1>SpinGrow</h1>
</div>
<div class="box move">
<h1>Move</h1>
</div>
<div class="box pulse">
<h1>Pulse</h1>
</div>
<div class="box fade">
<h1>Fade</h1>
</div>
<div class="box move-2">
<h1>Move 2</h1>
</div>
<div class="box grow">
<h1>Grow</h1>
</div>
<div class="box shrink">
<h1>Shrink</h1>
</div>
<div class="box spectrum">
<h2> Pull Up</h2>
</div>
<div class="box pullUp2">
<h2> Pull Up 2</h2>
</div>
<div class="box pulse-move-grow">
<h2>Pulse move grow</p2>
</div>
</body>
</html>