-
Notifications
You must be signed in to change notification settings - Fork 821
/
index.html
47 lines (46 loc) · 1.42 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>CSS Animations</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="code-along.css">
</head>
<body>
<div class="container">
<div class="transform-demo">
<h2>Transform Demo</h2>
<div></div><h3>hide me</h3>
</div>
<div class="transition-demo">
<h2>Transition Demo</h2>
<div class="cards">
<div class="card">
<img src="./assets/bouquet-card-for-special-occasion-creative-watercolor/1052.jpg" alt="floral card">
<dl class="">
<dt>Floral Card</dt>
<dd>$99.99</dd>
<dd><a href="http://www.freepik.com">Designed by photographeeasia / Freepik</a></dd>
</dl>
</div>
<div class="card">
<img src="./assets/floral-card/91231.jpg" alt="floral card">
<dl class="">
<dt>Floral Card</dt>
<dd>$99.99</dd>
<dd><a href="http://www.freepik.com">Designed by rawpixel.com / Freepik</a></dd>
</dl>
</div>
</div>
</div>
<div class="animation-demo">
<h2>Animation Demo</h2>
<div class="countdown">
<h3>Hurry! Sale ends soon!</h3>
<div class="bar">
</div>
</div>
</div>
</div>
</body>
</html>