-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (35 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Animations</title>
<!-- OUR STYLESHEET -->
<link rel="stylesheet" href="styles.css" type="text/css" media="all">
</head>
<body>
<span>
Select an option to see some examples:
</span>
<div class="options">
<a href="https://carla-ng.github.io/css-animations/03_button-effects/index.html" class="options__element">
<div class="options__element-image">
<img src="assets/images/button_effects.jpg" alt="Button Hover Effects">
</div>
<h4>Button Hover Effects</h4>
</a>
<a href="https://carla-ng.github.io/css-animations/04_images/index.html" class="options__element">
<div class="options__element-image">
<img src="assets/images/images_effects.jpg" alt="Images Hover Effects">
</div>
<h4>Images Hover Effects</h4>
</a>
<a href="https://carla-ng.github.io/css-animations/05_menus/index.html" class="options__element">
<div class="options__element-image">
<img src="assets/images/menus_effects.jpg" alt="Menus Hover Effects">
</div>
<h4>Menus Hover Effects</h4>
</a>
</div>
</body>
</html>