-
Notifications
You must be signed in to change notification settings - Fork 0
/
relax.html
111 lines (95 loc) · 3.93 KB
/
relax.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en" style="font-family: 'Slabo 27px', serif;">
<head>
<title>Relax Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="keywords" content="">
<link rel="stylesheet" href="css/relax.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/tab.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Slabo+27px&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body style="background-color: #9f9ec8">
<!--nav tab -->
<div class="buttons-container" style="text-align:center;">
<ul class="buttons" style="display:inline-block;">
<li>
<a id="home" name="home" href="index.html" title="Jot down!">
<img src="static/icons/home.png" alt="">
</a>
</li>
<li>
<a id="Dashboard" name="Dashboard" href="https://assistant-dashboard.herokuapp.com/" title="Onestop Dashboard!">
<img src="static/icons/dash.png" alt="">
</a>
</li>
<li>
<a id="Task Manager" name="Task Manager" href="task.html" title="Task Manager">
<img src="static/icons/todo.png" alt="">
</a>
</li>
<li>
<a id="note" name="note" href="note.html" title="Jot down!">
<img src="static/icons/note.png" alt="">
</a>
</li>
<li>
<a id="budget" name="budget" href="budget.html" title="budget">
<img src="static/icons/budget.png" alt="">
</a>
</li>
<li>
<a id="travel" name="travel" href="#" title="travel">
<img src="static/icons/travel.png" alt="">
</a>
<ul class="dropdown-content">
<li><a href="flight.html">Flights</a></li>
<li><a href="trains.html">Trains</a></li>
</ul>
</li>
<li>
<a id="Relax" name="Relax" href="relax.html" title="Relax">
<img src="static/icons/heart.png" alt="">
</a>
</li>
</ul>
</div>
<!-- end of nav tab -->
<!-- meditation section -->
<div class="hv-container hv-padding-450 hv-green hv-center">
<div class="hv-content" align="center">
<img data-aos="fade-in" data-aos-delay="50" src="static/relax/largeFlower.gif" alt="Meditation Circle" style="width:20vw; max-width:260px" class="animate__animated animate__slower animate__infinite animate__pulse">
<p data-aos="fade-in" data-aos-delay="200" class="hv-xlarge" style="color:white">
<br>
<br>
<br>
breathe in as it grows......<br>breathe out as it shrinks...
</p>
<div style="width:80%; text-align:center;">
<h3 style="color:white">Choose the track you like!</h3>
<audio data-aos="fade-in" style="padding-top:10px;padding-bottom:10px; border:solid white; text-align:center" data-aos-delay="300" controls>
<source src="static/relax/meditation-music.mp3" type="audio/mp3">
</audio>
<br>
<audio data-aos="fade-in" style="padding-top:10px;padding-bottom:10px; border:solid white; text-align:center" data-aos-delay="300" controls>
<source src="static/relax/audio.mp3" type="audio/mp3">
</audio>
</div>
</div>
</div>
<!-- initiate aos -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>AOS.init({once:true, duration:"600"});</script>
<!-- Menu stuff -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$("#heart-trigger").click(function () {
$("li").toggleClass("visible");
});
</script>
</body>
</html>