-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (66 loc) · 2.87 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<title>What to do?</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/animated.css">
</head>
<body>
<img class="background_image_pattern" src="images/pattern.svg"/>
<section class="site-container">
<header class="header-and-footer-container flex space-between is-invisible" data-animation-type='fade-in' data-animation-order='7'>
<span class="flex vertical_center">
<a href="index.html">
<img src="images/logo.svg">
</a>
</span>
<nav class="flex space-between">
<a href="contact-us.html">Contact Us</a>
<a href="add-activity.html" data-animation-type='fade-in' data-animation-order='6'>Add Activity</a>
<a class="btn transparent" href="find-activity.html">Find Activity</a>
</nav>
</header>
<img class="background_image_text" src="images/bg whattodo.svg"/>
<main class="flex space-between">
<section>
<section class="flex main-title_container is-invisible" data-animation-order='1' data-animation-type='slide-in'>
<h1>Looking for what to do?</h1>
</section>
<section class="main-actions_container flex vertical_center">
<a href="find-activity.html" class="btn is-invisible" data-animation-type='fade-in' data-animation-order='4'>Find Activity</a>
</section>
</section>
<section class="flex characters">
<div>
<div class="speech-bubble is-invisible" data-animation-type='fade-in' data-animation-order='6'>
<p>Also you can add your own idea of activity</p>
</div>
<img src="images/animated/character3.svg" class="is-invisible animated-element" data-animation-type='slide-in' data-animation-order='5'/>
</div>
<div>
<div class="speech-bubble is-invisible" data-animation-type='fade-in' data-animation-order='3'>
<p>Try to find your best activity randomly</p>
</div>
<img src="images/animated/character2-first.svg" class="is-invisible animated-element" data-animation-type='slide-in' data-animation-order='2'/>
</div>
<div>
<img src="images/animated/character1.svg"/>
</div>
</section>
</main>
<footer class="header-and-footer-container is-invisible" data-animation-type='fade-in' data-animation-order='7'>
<span>
Designed by <a href="https://www.hannahordieieva.com/" target="_blank">Anna</a>
</span>
<span>
Developed by <a href="https://github.com/deny7ko" target="_blank">deny7ko</a>
</span>
</footer>
</section>
<p class="animation-trigger" data-animation-type='fade-out' data-animation-order='7'>
press space to continue
</p>
<script src="js/animation.js"></script>
</body>
</html>